17 lines
328 B
Go
17 lines
328 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 projects struct {
|
|
container
|
|
}
|
|
|
|
func newProjects() generic.NodeDriverInterface {
|
|
return &projects{}
|
|
}
|