You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
317 B
11 lines
317 B
package tag
|
|
|
|
import "context"
|
|
|
|
type Repository interface {
|
|
FindOne(ctx context.Context, id string) (*Tag, error)
|
|
FindRecursive(ctx context.Context, id string) ([]Tag, error)
|
|
List(ctx context.Context, full bool) ([]Tag, error)
|
|
Save(ctx context.Context, tag Tag) error
|
|
Delete(ctx context.Context, tag Tag) error
|
|
}
|