forgejo/services/f3/driver/organizations.go
2024-02-03 12:18:45 +01:00

17 lines
343 B
Go

// Copyright Earl Warren <contact@earl-warren.org>
// Copyright Loïc Dachary <loic@dachary.org>
// SPDX-License-Identifier: MIT
package driver
import (
"lab.forgefriends.org/friendlyforgeformat/gof3/tree/generic"
)
type organizations struct {
container
}
func newOrganizations() generic.NodeDriverInterface {
return &organizations{}
}