18 lines
280 B
Go
18 lines
280 B
Go
package database
|
|
|
|
import (
|
|
"context"
|
|
|
|
"git.dragse.it/anthrove/otter-space-sdk/pkg/models"
|
|
)
|
|
|
|
type OtterSpace interface {
|
|
// Connect establishes a connection to the database.
|
|
Connect(ctx context.Context, config models.DatabaseConfig) error
|
|
|
|
User
|
|
Source
|
|
TagAlias
|
|
TagGroup
|
|
}
|