Skip to content

Commit 32065dd

Browse files
committed
라이선스 추가
1 parent db3f895 commit 32065dd

File tree

3 files changed

+105
-74
lines changed

3 files changed

+105
-74
lines changed

.gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
go.sum
1+
go.sum
2+
3+
/bin/*
4+
!/bin/test

LICENSE

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
BSD 3-Clause License
2+
3+
Copyright (c) 2017-2024, surplus-dev
4+
All rights reserved.
5+
6+
Redistribution and use in source and binary forms, with or without
7+
modification, are permitted provided that the following conditions are met:
8+
9+
* Redistributions of source code must retain the above copyright notice, this
10+
list of conditions and the following disclaimer.
11+
12+
* Redistributions in binary form must reproduce the above copyright notice,
13+
this list of conditions and the following disclaimer in the documentation
14+
and/or other materials provided with the distribution.
15+
16+
* Neither the name of the copyright holder nor the names of its
17+
contributors may be used to endorse or promote products derived from
18+
this software without specific prior written permission.
19+
20+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
27+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
28+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

go.mod

+72-73
Original file line numberDiff line numberDiff line change
@@ -5,80 +5,79 @@ go 1.21.0
55
toolchain go1.23.0
66

77
require (
8-
github.com/3th1nk/cidr v0.2.0
9-
github.com/dlclark/regexp2 v1.11.0
10-
github.com/gin-gonic/gin v1.10.0
11-
github.com/go-sql-driver/mysql v1.8.1
12-
github.com/google/generative-ai-go v0.11.0
13-
github.com/json-iterator/go v1.1.12
14-
github.com/yuin/goldmark v1.7.1
15-
google.golang.org/api v0.175.0
16-
modernc.org/sqlite v1.29.8
8+
github.com/3th1nk/cidr v0.2.0
9+
github.com/dlclark/regexp2 v1.11.0
10+
github.com/gin-gonic/gin v1.10.0
11+
github.com/go-sql-driver/mysql v1.8.1
12+
github.com/google/generative-ai-go v0.11.0
13+
github.com/json-iterator/go v1.1.12
14+
github.com/yuin/goldmark v1.7.1
15+
google.golang.org/api v0.175.0
16+
modernc.org/sqlite v1.29.8
1717
)
1818

1919
require (
20-
cloud.google.com/go v0.112.2 // indirect
21-
cloud.google.com/go/ai v0.4.0 // indirect
22-
cloud.google.com/go/auth v0.2.2 // indirect
23-
cloud.google.com/go/auth/oauth2adapt v0.2.1 // indirect
24-
cloud.google.com/go/compute/metadata v0.3.0 // indirect
25-
cloud.google.com/go/longrunning v0.5.6 // indirect
26-
filippo.io/edwards25519 v1.1.0 // indirect
27-
github.com/bytedance/sonic v1.12.3 // indirect
28-
github.com/bytedance/sonic/loader v0.2.0 // indirect
29-
github.com/cloudwego/base64x v0.1.4 // indirect
30-
github.com/cloudwego/iasm v0.2.0 // indirect
31-
github.com/dustin/go-humanize v1.0.1 // indirect
32-
github.com/felixge/httpsnoop v1.0.4 // indirect
33-
github.com/gabriel-vasile/mimetype v1.4.6 // indirect
34-
github.com/gin-contrib/sse v0.1.0 // indirect
35-
github.com/go-logr/logr v1.4.1 // indirect
36-
github.com/go-logr/stdr v1.2.2 // indirect
37-
github.com/go-playground/locales v0.14.1 // indirect
38-
github.com/go-playground/universal-translator v0.18.1 // indirect
39-
github.com/go-playground/validator/v10 v10.22.1 // indirect
40-
github.com/goccy/go-json v0.10.3 // indirect
41-
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
42-
github.com/golang/protobuf v1.5.4 // indirect
43-
github.com/google/s2a-go v0.1.7 // indirect
44-
github.com/google/uuid v1.6.0 // indirect
45-
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
46-
github.com/googleapis/gax-go/v2 v2.12.3 // indirect
47-
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
48-
github.com/jmoiron/sqlx v1.4.0 // indirect
49-
github.com/klauspost/cpuid/v2 v2.2.8 // indirect
50-
github.com/leodido/go-urn v1.4.0 // indirect
51-
github.com/mattn/go-isatty v0.0.20 // 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/ncruces/go-strftime v0.1.9 // indirect
55-
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
56-
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
57-
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
58-
github.com/ugorji/go/codec v1.2.12 // indirect
59-
go.opencensus.io v0.24.0 // indirect
60-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.50.0 // indirect
61-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.50.0 // indirect
62-
go.opentelemetry.io/otel v1.25.0 // indirect
63-
go.opentelemetry.io/otel/metric v1.25.0 // indirect
64-
go.opentelemetry.io/otel/trace v1.25.0 // indirect
65-
golang.org/x/arch v0.11.0 // indirect
66-
golang.org/x/crypto v0.28.0 // indirect
67-
golang.org/x/net v0.30.0 // indirect
68-
golang.org/x/oauth2 v0.19.0 // indirect
69-
golang.org/x/sync v0.8.0 // indirect
70-
golang.org/x/sys v0.26.0 // indirect
71-
golang.org/x/text v0.19.0 // indirect
72-
golang.org/x/time v0.5.0 // indirect
73-
google.golang.org/genproto/googleapis/api v0.0.0-20240415180920-8c6c420018be // indirect
74-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240415180920-8c6c420018be // indirect
75-
google.golang.org/grpc v1.63.2 // indirect
76-
google.golang.org/protobuf v1.35.1 // indirect
77-
gopkg.in/yaml.v3 v3.0.1 // indirect
78-
modernc.org/gc/v3 v3.0.0-20240304020402-f0dba7c97c2b // indirect
79-
modernc.org/libc v1.49.3 // indirect
80-
modernc.org/mathutil v1.6.0 // indirect
81-
modernc.org/memory v1.8.0 // indirect
82-
modernc.org/strutil v1.2.0 // indirect
83-
modernc.org/token v1.1.0 // indirect
20+
cloud.google.com/go v0.112.2 // indirect
21+
cloud.google.com/go/ai v0.4.0 // indirect
22+
cloud.google.com/go/auth v0.2.2 // indirect
23+
cloud.google.com/go/auth/oauth2adapt v0.2.1 // indirect
24+
cloud.google.com/go/compute/metadata v0.3.0 // indirect
25+
cloud.google.com/go/longrunning v0.5.6 // indirect
26+
filippo.io/edwards25519 v1.1.0 // indirect
27+
github.com/bytedance/sonic v1.12.3 // indirect
28+
github.com/bytedance/sonic/loader v0.2.0 // indirect
29+
github.com/cloudwego/base64x v0.1.4 // indirect
30+
github.com/cloudwego/iasm v0.2.0 // indirect
31+
github.com/dustin/go-humanize v1.0.1 // indirect
32+
github.com/felixge/httpsnoop v1.0.4 // indirect
33+
github.com/gabriel-vasile/mimetype v1.4.6 // indirect
34+
github.com/gin-contrib/sse v0.1.0 // indirect
35+
github.com/go-logr/logr v1.4.1 // indirect
36+
github.com/go-logr/stdr v1.2.2 // indirect
37+
github.com/go-playground/locales v0.14.1 // indirect
38+
github.com/go-playground/universal-translator v0.18.1 // indirect
39+
github.com/go-playground/validator/v10 v10.22.1 // indirect
40+
github.com/goccy/go-json v0.10.3 // indirect
41+
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
42+
github.com/golang/protobuf v1.5.4 // indirect
43+
github.com/google/s2a-go v0.1.7 // indirect
44+
github.com/google/uuid v1.6.0 // indirect
45+
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
46+
github.com/googleapis/gax-go/v2 v2.12.3 // indirect
47+
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
48+
github.com/klauspost/cpuid/v2 v2.2.8 // indirect
49+
github.com/leodido/go-urn v1.4.0 // indirect
50+
github.com/mattn/go-isatty v0.0.20 // indirect
51+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
52+
github.com/modern-go/reflect2 v1.0.2 // indirect
53+
github.com/ncruces/go-strftime v0.1.9 // indirect
54+
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
55+
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
56+
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
57+
github.com/ugorji/go/codec v1.2.12 // indirect
58+
go.opencensus.io v0.24.0 // indirect
59+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.50.0 // indirect
60+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.50.0 // indirect
61+
go.opentelemetry.io/otel v1.25.0 // indirect
62+
go.opentelemetry.io/otel/metric v1.25.0 // indirect
63+
go.opentelemetry.io/otel/trace v1.25.0 // indirect
64+
golang.org/x/arch v0.11.0 // indirect
65+
golang.org/x/crypto v0.28.0 // indirect
66+
golang.org/x/net v0.30.0 // indirect
67+
golang.org/x/oauth2 v0.19.0 // indirect
68+
golang.org/x/sync v0.8.0 // indirect
69+
golang.org/x/sys v0.26.0 // indirect
70+
golang.org/x/text v0.19.0 // indirect
71+
golang.org/x/time v0.5.0 // indirect
72+
google.golang.org/genproto/googleapis/api v0.0.0-20240415180920-8c6c420018be // indirect
73+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240415180920-8c6c420018be // indirect
74+
google.golang.org/grpc v1.63.2 // indirect
75+
google.golang.org/protobuf v1.35.1 // indirect
76+
gopkg.in/yaml.v3 v3.0.1 // indirect
77+
modernc.org/gc/v3 v3.0.0-20240304020402-f0dba7c97c2b // indirect
78+
modernc.org/libc v1.49.3 // indirect
79+
modernc.org/mathutil v1.6.0 // indirect
80+
modernc.org/memory v1.8.0 // indirect
81+
modernc.org/strutil v1.2.0 // indirect
82+
modernc.org/token v1.1.0 // indirect
8483
)

0 commit comments

Comments
 (0)