17 lines
343 B
Go
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{}
|
|
}
|