Implement the initial framework skeleton
This commit is contained in:
11
internal/profile/repository.go
Normal file
11
internal/profile/repository.go
Normal file
@@ -0,0 +1,11 @@
|
||||
package profile
|
||||
|
||||
import (
|
||||
"context"
|
||||
"gitea.maximumdirect.net/eric/scriptorium/internal/domain"
|
||||
)
|
||||
|
||||
// Repository handles loading and storing prompt profiles.
|
||||
type Repository interface {
|
||||
GetProfile(ctx context.Context, id string, version string) (*domain.PromptProfile, error)
|
||||
}
|
||||
Reference in New Issue
Block a user