mirror of
https://github.com/dstotijn/hetty.git
synced 2025-07-01 18:47:29 -04:00
15 lines
345 B
Go
15 lines
345 B
Go
package proj
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type Repository interface {
|
|
UpsertSettings(ctx context.Context, module string, settings interface{}) error
|
|
FindSettingsByModule(ctx context.Context, module string, settings interface{}) error
|
|
OpenProject(name string) error
|
|
DeleteProject(name string) error
|
|
Projects() ([]Project, error)
|
|
Close() error
|
|
}
|