zitadel/pkg/auth/auth.go

15 lines
256 B
Go
Raw Normal View History

2020-03-18 15:46:41 +01:00
package auth
import (
"context"
"github.com/caos/zitadel/internal/errors"
)
type Config struct {
}
func Start(ctx context.Context, config Config) error {
return errors.ThrowUnimplemented(nil, "AUTH-l7Hdx", "not implemented yet") //TODO: implement
2020-03-18 15:46:41 +01:00
}