guesstimate/server/internal/config/provider.go
William Petit d9fb51394c Frontend/backend project structure
+ Base implementation of a differential synchronization based on Neil
  Fraser article/talk

See https://www.youtube.com/watch?v=S2Hp_1jqpY8
2020-04-27 22:43:42 +02:00

10 lines
200 B
Go

package config
import "gitlab.com/wpetit/goweb/service"
func ServiceProvider(config *Config) service.Provider {
return func(ctn *service.Container) (interface{}, error) {
return config, nil
}
}