summaryrefslogtreecommitdiffstats
path: root/services/f3/driver/main.go
blob: 825d456692cef8865fc1bd2a84511a3716010965 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright Earl Warren <contact@earl-warren.org>
// Copyright Loïc Dachary <loic@dachary.org>
// SPDX-License-Identifier: MIT

package driver

import (
	driver_options "code.gitea.io/gitea/services/f3/driver/options"

	"code.forgejo.org/f3/gof3/v3/options"
	f3_tree "code.forgejo.org/f3/gof3/v3/tree/f3"
)

func init() {
	f3_tree.RegisterForgeFactory(driver_options.Name, newTreeDriver)
	options.RegisterFactory(driver_options.Name, newOptions)
}