1
0
mirror of https://github.com/zitadel/zitadel.git synced 2025-05-30 03:38:20 +00:00

12 lines
234 B
Go
Raw Normal View History

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)
}