mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
17 lines
296 B
Go
17 lines
296 B
Go
package console
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/caos/zitadel/internal/errors"
|
|
)
|
|
|
|
type Config struct {
|
|
Port string
|
|
StaticDir string
|
|
}
|
|
|
|
func Start(ctx context.Context, config Config) error {
|
|
return errors.ThrowUnimplemented(nil, "CONSO-4cT5D", "not implemented yet") //TODO: implement
|
|
}
|