Skip to content

Commit fee79cb

Browse files
deps: rename module
1 parent ad28dea commit fee79cb

24 files changed

+289
-112
lines changed

.github/workflows/go.yml

-25
This file was deleted.

.gitignore

+164-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
2-
# Created by https://www.gitignore.io/api/go,visualstudiocode
3-
# Edit at https://www.gitignore.io/?templates=go,visualstudiocode
1+
# Created by https://www.toptal.com/developers/gitignore/api/go,osx,linux,goland,windows,visualstudiocode
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=go,osx,linux,goland,windows,visualstudiocode
43

54
### Go ###
65
# Binaries for programs and plugins
@@ -10,25 +9,185 @@
109
*.so
1110
*.dylib
1211

13-
# Test binary, build with `go test -c`
12+
# Test binary, built with `go test -c`
1413
*.test
1514

1615
# Output of the go coverage tool, specifically when used with LiteIDE
1716
*.out
1817

18+
# Dependency directories (remove the comment below to include it)
19+
# vendor/
20+
1921
### Go Patch ###
2022
/vendor/
2123
/Godeps/
2224

25+
### Goland ###
26+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm, Rider and Goland
27+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
28+
29+
# User-specific stuff
30+
.idea/**/workspace.xml
31+
.idea/**/tasks.xml
32+
.idea/**/usage.statistics.xml
33+
.idea/**/dictionaries
34+
.idea/**/shelf
35+
36+
# AWS User-specific
37+
.idea/**/aws.xml
38+
39+
# Generated files
40+
.idea/**/contentModel.xml
41+
42+
# Sensitive or high-churn files
43+
.idea/**/dataSources/
44+
.idea/**/dataSources.ids
45+
.idea/**/dataSources.local.xml
46+
.idea/**/sqlDataSources.xml
47+
.idea/**/dynamic.xml
48+
.idea/**/uiDesigner.xml
49+
.idea/**/dbnavigator.xml
50+
51+
# Gradle
52+
.idea/**/gradle.xml
53+
.idea/**/libraries
54+
55+
# Gradle and Maven with auto-import
56+
# When using Gradle or Maven with auto-import, you should exclude module files,
57+
# since they will be recreated, and may cause churn. Uncomment if using
58+
# auto-import.
59+
# .idea/artifacts
60+
# .idea/compiler.xml
61+
# .idea/jarRepositories.xml
62+
# .idea/modules.xml
63+
# .idea/*.iml
64+
# .idea/modules
65+
# *.iml
66+
# *.ipr
67+
68+
# CMake
69+
cmake-build-*/
70+
71+
# Mongo Explorer plugin
72+
.idea/**/mongoSettings.xml
73+
74+
# File-based project format
75+
*.iws
76+
77+
# IntelliJ
78+
out/
79+
80+
# mpeltonen/sbt-idea plugin
81+
.idea_modules/
82+
83+
# JIRA plugin
84+
atlassian-ide-plugin.xml
85+
86+
# Cursive Clojure plugin
87+
.idea/replstate.xml
88+
89+
# Crashlytics plugin (for Android Studio and IntelliJ)
90+
com_crashlytics_export_strings.xml
91+
crashlytics.properties
92+
crashlytics-build.properties
93+
fabric.properties
94+
95+
# Editor-based Rest Client
96+
.idea/httpRequests
97+
98+
# Ignores the whole .idea folder and all .iml files
99+
.idea/
100+
101+
# Android studio 3.1+ serialized cache file
102+
.idea/caches/build_file_checksums.ser
103+
104+
### Linux ###
105+
*~
106+
107+
# temporary files which can be created if a process still has a handle open of a deleted file
108+
.fuse_hidden*
109+
110+
# KDE directory preferences
111+
.directory
112+
113+
# Linux trash folder which might appear on any partition or disk
114+
.Trash-*
115+
116+
# .nfs files are created when an open file is removed but is still being accessed
117+
.nfs*
118+
119+
### OSX ###
120+
# General
121+
.DS_Store
122+
.AppleDouble
123+
.LSOverride
124+
125+
# Icon must end with two \r
126+
Icon
127+
128+
129+
# Thumbnails
130+
._*
131+
132+
# Files that might appear in the root of a volume
133+
.DocumentRevisions-V100
134+
.fseventsd
135+
.Spotlight-V100
136+
.TemporaryItems
137+
.Trashes
138+
.VolumeIcon.icns
139+
.com.apple.timemachine.donotpresent
140+
141+
# Directories potentially created on remote AFP share
142+
.AppleDB
143+
.AppleDesktop
144+
Network Trash Folder
145+
Temporary Items
146+
.apdisk
147+
23148
### VisualStudioCode ###
24149
.vscode/*
25150
!.vscode/settings.json
26151
!.vscode/tasks.json
27152
!.vscode/launch.json
28153
!.vscode/extensions.json
154+
*.code-workspace
155+
156+
# Local History for Visual Studio Code
157+
.history/
29158

30159
### VisualStudioCode Patch ###
31160
# Ignore all local history of files
32161
.history
162+
.ionide
163+
164+
# Support for Project snippet scope
165+
!.vscode/*.code-snippets
166+
167+
### Windows ###
168+
# Windows thumbnail cache files
169+
Thumbs.db
170+
Thumbs.db:encryptable
171+
ehthumbs.db
172+
ehthumbs_vista.db
173+
174+
# Dump file
175+
*.stackdump
176+
177+
# Folder config file
178+
[Dd]esktop.ini
179+
180+
# Recycle Bin used on file shares
181+
$RECYCLE.BIN/
182+
183+
# Windows Installer files
184+
*.cab
185+
*.msi
186+
*.msix
187+
*.msm
188+
*.msp
189+
190+
# Windows shortcuts
191+
*.lnk
33192

34-
# End of https://www.gitignore.io/api/go,visualstudiocode
193+
# End of https://www.toptal.com/developers/gitignore/api/go,osx,linux,goland,windows,visualstudiocode

LICENSE

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

LICENSE.txt

-26
This file was deleted.

0 commit comments

Comments
 (0)