17 lines
399 B
Go
17 lines
399 B
Go
|
// 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
|
||
|
}
|