-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
37 lines (30 loc) · 819 Bytes
/
main.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
package main
import (
"github.com/treeman-zhou/code-snippet-go/aws"
"github.com/treeman-zhou/code-snippet-go/cron"
"github.com/treeman-zhou/code-snippet-go/db/kafka"
"github.com/treeman-zhou/code-snippet-go/db/mongo"
"github.com/treeman-zhou/code-snippet-go/db/mysql/gorm"
"github.com/treeman-zhou/code-snippet-go/db/redis"
"github.com/treeman-zhou/code-snippet-go/db/sqlite/upper"
"github.com/treeman-zhou/code-snippet-go/internal/mail"
"github.com/treeman-zhou/code-snippet-go/localcache"
"github.com/treeman-zhou/code-snippet-go/log/zap"
"github.com/treeman-zhou/code-snippet-go/web"
)
func main() {
aws.Init()
cron.Main()
kafka.Main()
mongo.Main()
gorm.Init()
redis.Init()
upper.Main()
mail.Init()
localcache.Main()
zap.Init(zap.Config{})
web.CHI()
web.ECHO()
web.GIN()
web.IRIS()
}