1
0
mirror of https://github.com/zitadel/zitadel.git synced 2025-06-24 22:28:33 +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)
}