Skip to content

Commit 72ab19c

Browse files
authored
Merge pull request #33 from armortal/29-refactor
29 refactor
2 parents a9303c1 + f37a99c commit 72ab19c

26 files changed

+1739
-1019
lines changed

.github/workflows/test.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
# Copyright 2023-2024 ARMORTAL TECHNOLOGIES PTY LTD
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
114
name: test
215

316
on:

.gitignore

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# Copyright 2023-2024 ARMORTAL TECHNOLOGIES PTY LTD
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
115
# If you prefer the allow list template instead of the deny list, see community template:
216
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
317
#

.vscode/launch.json

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
// Copyright 2023-2024 ARMORTAL TECHNOLOGIES PTY LTD
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
{
15+
// Use IntelliSense to learn about possible attributes.
16+
// Hover to view descriptions of existing attributes.
17+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
18+
"version": "0.2.0",
19+
"configurations": [
20+
{
21+
"name": "hmac",
22+
"type": "go",
23+
"request": "launch",
24+
"mode": "auto",
25+
"program": "examples/hmac/main.go"
26+
}
27+
]
28+
}

0 commit comments

Comments
 (0)