69 |
70 | Showing {pageFirstRecord} - {pageLastRecord} of {totalRows}
71 |
72 |
73 |
80 | {pagesArr.map((num, index) => (
81 |
90 | ))}
91 |
98 |
99 |
100 | ) : null}
101 | >
102 | );
103 | };
104 |
--------------------------------------------------------------------------------
/services/user-service/go.mod:
--------------------------------------------------------------------------------
1 | module github.com/PanGan21/user-service
2 |
3 | go 1.20
4 |
5 | require (
6 | github.com/PanGan21/pkg/auth v0.0.0-00010101000000-000000000000
7 | github.com/PanGan21/pkg/entity v0.0.0-00010101000000-000000000000
8 | github.com/PanGan21/pkg/httpserver v0.0.0-00010101000000-000000000000
9 | github.com/PanGan21/pkg/logger v0.0.0-00010101000000-000000000000
10 | github.com/PanGan21/pkg/postgres v0.0.0-00010101000000-000000000000
11 | github.com/gin-contrib/cors v1.4.0
12 | github.com/gin-gonic/contrib v0.0.0-20201101042839-6a891bf89f19
13 | github.com/gin-gonic/gin v1.8.1
14 | github.com/ilyakaznacheev/cleanenv v1.3.0
15 | )
16 |
17 | require (
18 | github.com/BurntSushi/toml v1.2.0 // indirect
19 | github.com/Masterminds/squirrel v1.5.3 // indirect
20 | github.com/PanGan21/pkg/utils v0.0.0-00010101000000-000000000000 // indirect
21 | github.com/boj/redistore v0.0.0-20180917114910-cd5dcc76aeff // indirect
22 | github.com/gin-contrib/sse v0.1.0 // indirect
23 | github.com/go-playground/locales v0.14.0 // indirect
24 | github.com/go-playground/universal-translator v0.18.0 // indirect
25 | github.com/go-playground/validator/v10 v10.11.1 // indirect
26 | github.com/goccy/go-json v0.9.11 // indirect
27 | github.com/gofrs/uuid v4.3.0+incompatible // indirect
28 | github.com/golang-jwt/jwt/v4 v4.4.2 // indirect
29 | github.com/gomodule/redigo v2.0.0+incompatible // indirect
30 | github.com/google/go-cmp v0.5.9 // indirect
31 | github.com/gorilla/context v1.1.1 // indirect
32 | github.com/gorilla/securecookie v1.1.1 // indirect
33 | github.com/gorilla/sessions v1.2.1 // indirect
34 | github.com/jackc/chunkreader/v2 v2.0.1 // indirect
35 | github.com/jackc/pgconn v1.13.0 // indirect
36 | github.com/jackc/pgio v1.0.0 // indirect
37 | github.com/jackc/pgpassfile v1.0.0 // indirect
38 | github.com/jackc/pgproto3/v2 v2.3.1 // indirect
39 | github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
40 | github.com/jackc/pgtype v1.12.0 // indirect
41 | github.com/jackc/pgx/v4 v4.17.2 // indirect
42 | github.com/jackc/puddle v1.3.0 // indirect
43 | github.com/joho/godotenv v1.4.0 // indirect
44 | github.com/json-iterator/go v1.1.12 // indirect
45 | github.com/lann/builder v0.0.0-20180802200727-47ae307949d0 // indirect
46 | github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0 // indirect
47 | github.com/leodido/go-urn v1.2.1 // indirect
48 | github.com/lib/pq v1.10.7 // indirect
49 | github.com/mattn/go-colorable v0.1.13 // indirect
50 | github.com/mattn/go-isatty v0.0.16 // indirect
51 | github.com/mitchellh/mapstructure v1.5.0 // indirect
52 | github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
53 | github.com/modern-go/reflect2 v1.0.2 // indirect
54 | github.com/pelletier/go-toml/v2 v2.0.5 // indirect
55 | github.com/rs/zerolog v1.28.0 // indirect
56 | github.com/ugorji/go/codec v1.2.7 // indirect
57 | golang.org/x/crypto v0.0.0-20220926161630-eccd6366d1be // indirect
58 | golang.org/x/net v0.0.0-20221002022538-bcab6841153b // indirect
59 | golang.org/x/sys v0.1.0 // indirect
60 | golang.org/x/text v0.3.7 // indirect
61 | google.golang.org/protobuf v1.28.1 // indirect
62 | gopkg.in/yaml.v2 v2.4.0 // indirect
63 | gopkg.in/yaml.v3 v3.0.1 // indirect
64 | olympos.io/encoding/edn v0.0.0-20201019073823-d3554ca0b0a3 // indirect
65 | )
66 |
67 | replace (
68 | github.com/PanGan21/pkg/auth => ../../pkg/auth
69 | github.com/PanGan21/pkg/entity => ../../pkg/entity
70 | github.com/PanGan21/pkg/httpserver => ../../pkg/httpserver
71 | github.com/PanGan21/pkg/logger => ../../pkg/logger
72 | github.com/PanGan21/pkg/postgres => ../../pkg/postgres
73 | github.com/PanGan21/pkg/utils => ../../pkg/utils
74 | )
75 |
--------------------------------------------------------------------------------