// Copyright Earl Warren // Copyright Loïc Dachary // 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 }