Skip to content

Commit 62fe11a

Browse files
authored
Merge pull request #26 from kkdai/ignore_vendor
ignore vendor
2 parents da58f70 + 9d85fa4 commit 62fe11a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+307
-9537
lines changed

.gitignore

Lines changed: 304 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,305 @@
11
LineBotTemplate
2+
### core template
3+
*.swp
4+
*.*~
5+
project.lock.json
6+
.DS_Store
7+
*.pyc
8+
nupkg/
9+
10+
# Visual Studio Code
11+
.vscode
12+
13+
# Rider
14+
.idea
15+
16+
# User-specific files
17+
*.suo
18+
*.user
19+
*.userosscache
20+
*.sln.docstates
21+
22+
# Build results
23+
[Dd]ebug/
24+
[Dd]ebugPublic/
25+
[Rr]elease/
26+
[Rr]eleases/
27+
x64/
28+
x86/
29+
build/
30+
bld/
31+
[Bb]in/
32+
[Oo]bj/
33+
[Oo]ut/
34+
msbuild.log
35+
msbuild.err
36+
msbuild.wrn
37+
38+
# Visual Studio 2015
39+
.vs/
40+
41+
42+
### VisualStudioCode template
43+
.vscode/*
44+
!.vscode/settings.json
45+
!.vscode/tasks.json
46+
!.vscode/launch.json
47+
!.vscode/extensions.json
48+
!.vscode/*.code-snippets
49+
50+
# Local History for Visual Studio Code
51+
.history/
52+
53+
# Built Visual Studio Code Extensions
54+
*.vsix
55+
56+
### JetBrains template
57+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
58+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
59+
60+
# User-specific stuff
61+
.idea/**/workspace.xml
62+
.idea/**/tasks.xml
63+
.idea/**/usage.statistics.xml
64+
.idea/**/dictionaries
65+
.idea/**/shelf
66+
67+
# AWS User-specific
68+
.idea/**/aws.xml
69+
70+
# Generated files
71+
.idea/**/contentModel.xml
72+
73+
# Sensitive or high-churn files
74+
.idea/**/dataSources/
75+
.idea/**/dataSources.ids
76+
.idea/**/dataSources.local.xml
77+
.idea/**/sqlDataSources.xml
78+
.idea/**/dynamic.xml
79+
.idea/**/uiDesigner.xml
80+
.idea/**/dbnavigator.xml
81+
82+
# Gradle
83+
.idea/**/gradle.xml
84+
.idea/**/libraries
85+
86+
# Gradle and Maven with auto-import
87+
# When using Gradle or Maven with auto-import, you should exclude module files,
88+
# since they will be recreated, and may cause churn. Uncomment if using
89+
# auto-import.
90+
# .idea/artifacts
91+
# .idea/compiler.xml
92+
# .idea/jarRepositories.xml
93+
# .idea/modules.xml
94+
# .idea/*.iml
95+
# .idea/modules
96+
# *.iml
97+
# *.ipr
98+
99+
# CMake
100+
cmake-build-*/
101+
102+
# Mongo Explorer plugin
103+
.idea/**/mongoSettings.xml
104+
105+
# File-based project format
106+
*.iws
107+
108+
# IntelliJ
109+
out/
110+
111+
# mpeltonen/sbt-idea plugin
112+
.idea_modules/
113+
114+
# JIRA plugin
115+
atlassian-ide-plugin.xml
116+
117+
# Cursive Clojure plugin
118+
.idea/replstate.xml
119+
120+
# SonarLint plugin
121+
.idea/sonarlint/
122+
123+
# Crashlytics plugin (for Android Studio and IntelliJ)
124+
com_crashlytics_export_strings.xml
125+
crashlytics.properties
126+
crashlytics-build.properties
127+
fabric.properties
128+
129+
# Editor-based Rest Client
130+
.idea/httpRequests
131+
132+
# Android studio 3.1+ serialized cache file
133+
.idea/caches/build_file_checksums.ser
134+
135+
### Linux template
136+
*~
137+
138+
# temporary files which can be created if a process still has a handle open of a deleted file
139+
.fuse_hidden*
140+
141+
# KDE directory preferences
142+
.directory
143+
144+
# Linux trash folder which might appear on any partition or disk
145+
.Trash-*
146+
147+
# .nfs files are created when an open file is removed but is still being accessed
148+
.nfs*
149+
150+
### Go template
151+
# If you prefer the allow list template instead of the deny list, see community template:
152+
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
153+
#
154+
# Binaries for programs and plugins
155+
*.exe
156+
*.exe~
157+
*.dll
158+
*.so
159+
*.dylib
160+
161+
# Test binary, built with `go test -c`
162+
*.test
163+
164+
# Output of the go coverage tool, specifically when used with LiteIDE
165+
*.out
166+
167+
# Dependency directories (remove the comment below to include it)
168+
vendor/
169+
170+
# Go workspace file
171+
go.work
172+
173+
### Go.AllowList template
174+
# Allowlisting gitignore template for GO projects prevents us
175+
# from adding various unwanted local files, such as generated
176+
# files, developer configurations or IDE-specific files etc.
177+
#
178+
# Recommended: Go.AllowList.gitignore
179+
180+
# Ignore everything
181+
*
182+
183+
# But not these files...
184+
!/.gitignore
185+
186+
!*.go
187+
!go.sum
188+
!go.mod
189+
190+
!README.md
191+
!LICENSE
192+
193+
# !Makefile
194+
195+
# ...even if they are in subdirectories
196+
!*/
197+
198+
### Windows template
199+
# Windows thumbnail cache files
200+
Thumbs.db
201+
Thumbs.db:encryptable
202+
ehthumbs.db
203+
ehthumbs_vista.db
204+
205+
# Dump file
206+
*.stackdump
207+
208+
# Folder config file
209+
[Dd]esktop.ini
210+
211+
# Recycle Bin used on file shares
212+
$RECYCLE.BIN/
213+
214+
# Windows Installer files
215+
*.cab
216+
*.msi
217+
*.msix
218+
*.msm
219+
*.msp
220+
221+
# Windows shortcuts
222+
*.lnk
223+
224+
### Vim template
225+
# Swap
226+
[._]*.s[a-v][a-z]
227+
!*.svg # comment out if you don't need vector files
228+
[._]*.sw[a-p]
229+
[._]s[a-rt-v][a-z]
230+
[._]ss[a-gi-z]
231+
[._]sw[a-p]
232+
233+
# Session
234+
Session.vim
235+
Sessionx.vim
236+
237+
# Temporary
238+
.netrwhist
239+
# Auto-generated tag files
240+
tags
241+
# Persistent undo
242+
[._]*.un~
243+
244+
### macOS template
245+
# General
246+
.AppleDouble
247+
.LSOverride
248+
249+
# Icon must end with two \r
250+
Icon
251+
252+
# Thumbnails
253+
._*
254+
255+
# Files that might appear in the root of a volume
256+
.DocumentRevisions-V100
257+
.fseventsd
258+
.Spotlight-V100
259+
.TemporaryItems
260+
.Trashes
261+
.VolumeIcon.icns
262+
.com.apple.timemachine.donotpresent
263+
264+
# Directories potentially created on remote AFP share
265+
.AppleDB
266+
.AppleDesktop
267+
Network Trash Folder
268+
Temporary Items
269+
.apdisk
270+
271+
### OpenSSL template
272+
# OpenSSL-related files best not committed
273+
274+
## Certificate Authority
275+
*.ca
276+
277+
## Certificate
278+
*.crt
279+
280+
## Certificate Sign Request
281+
*.csr
282+
283+
## Certificate
284+
*.der
285+
286+
## Key database file
287+
*.kdb
288+
289+
## OSCP request data
290+
*.org
291+
292+
## PKCS #12
293+
*.p12
294+
295+
## PEM-encoded certificate data
296+
*.pem
297+
298+
## Random number seed
299+
*.rnd
300+
301+
## SSLeay data
302+
*.ssleay
303+
304+
## S/MIME message
305+
*.smime

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ module github.com/kkdai/LineBotTemplate
33
// +heroku goVersion go1.17
44
go 1.17
55

6-
require github.com/line/line-bot-sdk-go/v7 v7.18.0
6+
require github.com/line/line-bot-sdk-go/v7 v7.19.0

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
22
github.com/line/line-bot-sdk-go/v7 v7.18.0 h1:ogrOioYKnCuyDlbNAuFb7hGdv1KGkluKWUcZx/Uocds=
33
github.com/line/line-bot-sdk-go/v7 v7.18.0/go.mod h1:2CXH5xBgADszymGNRRUiUqBQ/0G6r2nx3BviBYtnB3U=
4+
github.com/line/line-bot-sdk-go/v7 v7.19.0 h1:WEbuBBSq65RMMqTn3vIl+Eb4wv2CjhZz7kiw8XTk2Wg=
5+
github.com/line/line-bot-sdk-go/v7 v7.19.0/go.mod h1:idpoxOZgtSd8JyhctMMpwg5LNgRAIL/QIxa5S0DXcMg=
46
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
57
golang.org/x/net v0.0.0-20190603091049-60506f45cf65/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks=
68
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=

0 commit comments

Comments
 (0)