18 lines
356 B
Go
18 lines
356 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 topics struct {
|
|
container
|
|
}
|
|
|
|
func newTopics() generic.NodeDriverInterface {
|
|
return &topics{}
|
|
}
|