18 lines
362 B
Go
18 lines
362 B
Go
// Copyright Earl Warren <contact@earl-warren.org>
|
|
// Copyright Loïc Dachary <loic@dachary.org>
|
|
// Copyright twenty-panda <twenty-panda@posteo.com>
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package gitlab
|
|
|
|
import (
|
|
"code.forgejo.org/f3/gof3/v3/tree/generic"
|
|
)
|
|
|
|
type projects struct {
|
|
container
|
|
}
|
|
|
|
func newProjects() generic.NodeDriverInterface {
|
|
return &projects{}
|
|
}
|