mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
15 lines
233 B
Go
15 lines
233 B
Go
package management
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/caos/zitadel/internal/errors"
|
|
)
|
|
|
|
type Config struct {
|
|
}
|
|
|
|
func Start(ctx context.Context, config Config) error {
|
|
return errors.ThrowUnimplemented(nil, "", "") //TODO: implement
|
|
}
|