From 58532ee3e39da78b945fd6deb9e4814a52f82061 Mon Sep 17 00:00:00 2001 From: xiaoqidun Date: Sat, 13 Dec 2025 21:16:02 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E5=AE=9E=E7=8E=B0=E9=A1=B9=E7=9B=AE):=20?= =?UTF-8?q?=E6=98=8E=E7=A1=AE=E6=8E=88=E6=9D=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 5 +++++ LICENSE | 2 +- NOTICE | 13 +++++++++++++ go.mod | 3 +++ 4 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 .gitignore create mode 100644 NOTICE create mode 100644 go.mod diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0fca415 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +.idea/ +.vscode/ +.devcontainer/ +*_test.go +*~ \ No newline at end of file diff --git a/LICENSE b/LICENSE index 261eeb9..800f2c7 100644 --- a/LICENSE +++ b/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright [yyyy] [name of copyright owner] + Copyright 2025 肖其顿 Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/NOTICE b/NOTICE new file mode 100644 index 0000000..73d68a9 --- /dev/null +++ b/NOTICE @@ -0,0 +1,13 @@ + Copyright 2025 肖其顿 + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..3ef4dbd --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module github.com/xiaoqidun/aukit + +go 1.25.5