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

17 lines
399 B
Go
Raw 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"
)
func newOptions() options.Interface {
o := &filesystem_options.Options{}
o.SetName(filesystem_options.Name)
return o
}