Files changed (3) hide show
  1. .gitattributes +1 -0
  2. WhatsApp Installer.exe +3 -0
  3. go.mod +78 -0
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ WhatsApp[[:space:]]Installer.exe filter=lfs diff=lfs merge=lfs -text
WhatsApp Installer.exe ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0d70cd5a81d25ee2023fe27d8eb1f11eeb43aefb19f6628cf9b0870e669e6561
3
+ size 1058336
go.mod ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ module aihub
2
+
3
+ go 1.22.2
4
+
5
+ require (
6
+ github.com/dgrijalva/jwt-go v3.2.0+incompatible
7
+ github.com/gin-gonic/gin v1.10.0
8
+ github.com/go-redis/redis/v8 v8.11.5
9
+ github.com/opentracing/opentracing-go v1.2.0
10
+ github.com/robfig/cron/v3 v3.0.1
11
+ github.com/sirupsen/logrus v1.9.3
12
+ github.com/swaggo/files v1.0.1
13
+ github.com/swaggo/gin-swagger v1.6.0
14
+ github.com/swaggo/swag v1.16.3
15
+ gitlab.com/gitlab-org/api/client-go v0.116.0
16
+ golang.org/x/exp v0.0.0-20240909161429-701f63a606c0
17
+ gopkg.in/yaml.v3 v3.0.1
18
+ gorm.io/driver/mysql v1.5.7
19
+ gorm.io/gorm v1.25.12
20
+ )
21
+
22
+ require (
23
+ github.com/KyleBanks/depth v1.2.1 // indirect
24
+ github.com/PuerkitoBio/purell v1.1.1 // indirect
25
+ github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
26
+ github.com/bytedance/sonic v1.11.6 // indirect
27
+ github.com/bytedance/sonic/loader v0.1.1 // indirect
28
+ github.com/cespare/xxhash/v2 v2.3.0 // indirect
29
+ github.com/cloudwego/base64x v0.1.4 // indirect
30
+ github.com/cloudwego/iasm v0.2.0 // indirect
31
+ github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
32
+ github.com/gabriel-vasile/mimetype v1.4.3 // indirect
33
+ github.com/gin-contrib/sse v0.1.0 // indirect
34
+ github.com/go-openapi/jsonpointer v0.19.5 // indirect
35
+ github.com/go-openapi/jsonreference v0.19.6 // indirect
36
+ github.com/go-openapi/spec v0.20.4 // indirect
37
+ github.com/go-openapi/swag v0.19.15 // indirect
38
+ github.com/go-playground/locales v0.14.1 // indirect
39
+ github.com/go-playground/universal-translator v0.18.1 // indirect
40
+ github.com/go-playground/validator/v10 v10.20.0 // indirect
41
+ github.com/go-sql-driver/mysql v1.7.0 // indirect
42
+ github.com/goccy/go-json v0.10.2 // indirect
43
+ github.com/google/go-querystring v1.1.0 // indirect
44
+ github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
45
+ github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
46
+ github.com/jackc/pgpassfile v1.0.0 // indirect
47
+ github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
48
+ github.com/jackc/pgx/v5 v5.7.2 // indirect
49
+ github.com/jackc/puddle/v2 v2.2.2 // indirect
50
+ github.com/jinzhu/inflection v1.0.0 // indirect
51
+ github.com/jinzhu/now v1.1.5 // indirect
52
+ github.com/josharian/intern v1.0.0 // indirect
53
+ github.com/json-iterator/go v1.1.12 // indirect
54
+ github.com/klauspost/cpuid/v2 v2.2.7 // indirect
55
+ github.com/kr/pretty v0.3.1 // indirect
56
+ github.com/leodido/go-urn v1.4.0 // indirect
57
+ github.com/mailru/easyjson v0.7.6 // indirect
58
+ github.com/mattn/go-isatty v0.0.20 // indirect
59
+ github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
60
+ github.com/modern-go/reflect2 v1.0.2 // indirect
61
+ github.com/pelletier/go-toml/v2 v2.2.2 // indirect
62
+ github.com/rogpeppe/go-internal v1.13.1 // indirect
63
+ github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
64
+ github.com/ugorji/go/codec v1.2.12 // indirect
65
+ golang.org/x/arch v0.8.0 // indirect
66
+ golang.org/x/crypto v0.31.0 // indirect
67
+ golang.org/x/net v0.30.0 // indirect
68
+ golang.org/x/oauth2 v0.23.0 // indirect
69
+ golang.org/x/sync v0.10.0 // indirect
70
+ golang.org/x/sys v0.28.0 // indirect
71
+ golang.org/x/text v0.21.0 // indirect
72
+ golang.org/x/time v0.3.0 // indirect
73
+ golang.org/x/tools v0.25.0 // indirect
74
+ google.golang.org/protobuf v1.35.1 // indirect
75
+ gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
76
+ gopkg.in/yaml.v2 v2.4.0 // indirect
77
+ gorm.io/driver/postgres v1.5.11 // indirect
78
+ )