zitadel/pkg/auth/auth.go
2020-03-18 15:46:41 +01:00

15 lines
227 B
Go

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, "", "") //TODO: implement
}