-
Notifications
You must be signed in to change notification settings - Fork 292
/
Copy pathinject_user.go
46 lines (39 loc) · 972 Bytes
/
inject_user.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package main
import (
"github.com/go-training/example49-dependency-injection/cache"
"github.com/go-training/example49-dependency-injection/config"
"github.com/go-training/example49-dependency-injection/user"
"github.com/go-training/example49-dependency-injection/user/crowd"
"github.com/go-training/example49-dependency-injection/user/ldap"
"github.com/google/wire"
)
var userSet = wire.NewSet( //nolint:deadcode,unused,varcheck
provideUser,
provideLDAP,
provideCROWD,
provideCache,
)
func provideUser(
l *ldap.Service,
c *crowd.Service,
cache *cache.Service,
) (*user.Service, error) {
return user.New(l, c, cache)
}
func provideLDAP(
cfg config.Config,
cache *cache.Service,
) (*ldap.Service, error) {
return ldap.New(cfg, cache)
}
func provideCROWD(
cfg config.Config,
cache *cache.Service,
) (*crowd.Service, error) {
return crowd.New(cfg, cache)
}
func provideCache(
cfg config.Config,
) (*cache.Service, error) {
return cache.New(cfg)
}