mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
20 lines
437 B
Go
20 lines
437 B
Go
package auth
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/caos/zitadel/internal/api/auth"
|
|
app "github.com/caos/zitadel/internal/auth"
|
|
"github.com/caos/zitadel/internal/errors"
|
|
"github.com/caos/zitadel/pkg/auth/api"
|
|
)
|
|
|
|
type Config struct {
|
|
App app.Config
|
|
API api.Config
|
|
}
|
|
|
|
func Start(ctx context.Context, config Config, authZ auth.Config) error {
|
|
return errors.ThrowUnimplemented(nil, "AUTH-l7Hdx", "not implemented yet") //TODO: implement
|
|
}
|