1
0
Fork 0
golang-forgejo-f3-gof3/forges/filesystem/main.go

17 lines
472 B
Go
Raw Permalink Normal View History

// Copyright Earl Warren <contact@earl-warren.org>
// Copyright Loïc Dachary <loic@dachary.org>
// SPDX-License-Identifier: MIT
package filesystem
import (
filesystem_options "code.forgejo.org/f3/gof3/v3/forges/filesystem/options"
"code.forgejo.org/f3/gof3/v3/options"
f3_tree "code.forgejo.org/f3/gof3/v3/tree/f3"
)
func init() {
f3_tree.RegisterForgeFactory(filesystem_options.Name, newTreeDriver)
options.RegisterFactory(filesystem_options.Name, newOptions)
}