mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
12 lines
234 B
Go
12 lines
234 B
Go
|
package repository
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
features_model "github.com/caos/zitadel/internal/features/model"
|
||
|
)
|
||
|
|
||
|
type FeaturesRepository interface {
|
||
|
GetOrgFeatures(ctx context.Context, id string) (*features_model.FeaturesView, error)
|
||
|
}
|