Switch to uuids and simplify names

- bundles, settings and values now have uuids as identifier
- removed unnecessary name parts (SettingsBundle -> Bundle,
SettingsValue -> Value, ...)
This commit is contained in:
Benedikt Kulmann
2020-08-19 10:20:51 +02:00
parent 33720f2b5a
commit 3cb272e76e
17 changed files with 2631 additions and 1941 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ func Server(opts ...Option) grpc.Service {
grpc.Flags(options.Flags...),
)
handle := svc.NewService(options.Config)
handle := svc.NewService(options.Config, options.Logger)
if err := proto.RegisterBundleServiceHandler(service.Server(), handle); err != nil {
options.Logger.Fatal().Err(err).Msg("could not register SettingsBundles service handler")
}