14 lines
257 B
Go
14 lines
257 B
Go
package skill
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
// Repository provides access to the skills catalog.
|
|
type Repository interface {
|
|
FindAll(ctx context.Context) ([]*Skill, error)
|
|
FindByID(ctx context.Context, id uuid.UUID) (*Skill, error)
|
|
}
|