zitadel/pkg/console/console.go

17 lines
296 B
Go
Raw Normal View History

2020-03-25 06:58:58 +00:00
package console
import (
"context"
"github.com/caos/zitadel/internal/errors"
)
type Config struct {
Port string
StaticDir string
}
2020-03-27 12:57:16 +00:00
func Start(ctx context.Context, config Config) error {
2020-03-25 06:58:58 +00:00
return errors.ThrowUnimplemented(nil, "CONSO-4cT5D", "not implemented yet") //TODO: implement
}