* add basic gitignore

* init go mod

* add semrel and badges

* add error pkg

* added config pkg

* added main cmd structure

* return error on file not found and added log ids and messages

* add todo for error_creator.go
This commit is contained in:
livio-a
2020-03-19 14:39:06 +01:00
committed by GitHub
parent 661bcfbdec
commit 87d5cd3f09
41 changed files with 1523 additions and 1 deletions

14
pkg/admin/admin.go Normal file
View File

@@ -0,0 +1,14 @@
package admin
import (
"context"
"github.com/caos/zitadel/internal/errors"
)
type Config struct {
}
func Start(ctx context.Context, config Config) error {
return errors.ThrowUnimplemented(nil, "ADMIN-n8vw5", "not implemented yet") //TODO: implement
}

14
pkg/auth/auth.go Normal file
View File

@@ -0,0 +1,14 @@
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
}

View File

@@ -0,0 +1,14 @@
package eventstore
import (
"context"
"github.com/caos/zitadel/internal/errors"
)
type Config struct {
}
func Start(ctx context.Context, config Config) error {
return errors.ThrowUnimplemented(nil, "EVENT-1hfiu", "not implemented yet") //TODO: implement
}

View File

@@ -0,0 +1,14 @@
package management
import (
"context"
"github.com/caos/zitadel/internal/errors"
)
type Config struct {
}
func Start(ctx context.Context, config Config) error {
return errors.ThrowUnimplemented(nil, "MANAG-h3k3x", "not implemented yet") //TODO: implement
}