From aa5f589ddcc87f5fabf720247cd16cf9606344c8 Mon Sep 17 00:00:00 2001 From: wubijie Date: Thu, 28 Nov 2024 11:05:20 +0800 Subject: [PATCH] add copyright information --- server/config/config.go | 7 +++++++ server/db/db.go | 7 +++++++ server/db/redisdao.go | 7 +++++++ server/global/global.go | 7 +++++++ server/httphandler/agent.go | 7 +++++++ server/main.go | 7 +++++++ server/plugin/plugin_redis.go | 7 +++++++ server/router/router.go | 7 +++++++ server/service/agent.go | 7 +++++++ 9 files changed, 63 insertions(+) diff --git a/server/config/config.go b/server/config/config.go index a6cd8cd..79c2263 100644 --- a/server/config/config.go +++ b/server/config/config.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-redis licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: wubijie + * Date: Mon Jun 26 15:24:19 2023 +0800 + */ package config import ( diff --git a/server/db/db.go b/server/db/db.go index 825c89a..44c0ab8 100644 --- a/server/db/db.go +++ b/server/db/db.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-redis licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: wubijie + * Date: Mon Jun 26 15:24:19 2023 +0800 + */ package db import ( diff --git a/server/db/redisdao.go b/server/db/redisdao.go index 72078d7..bcd05a7 100644 --- a/server/db/redisdao.go +++ b/server/db/redisdao.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-redis licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: wubijie + * Date: Fri Jun 30 14:51:06 2023 +0800 + */ package db import ( diff --git a/server/global/global.go b/server/global/global.go index ff5226f..8c778d9 100644 --- a/server/global/global.go +++ b/server/global/global.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-redis licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: wubijie + * Date: Mon Jun 26 15:24:19 2023 +0800 + */ package global import ( diff --git a/server/httphandler/agent.go b/server/httphandler/agent.go index d567198..b91ab6d 100644 --- a/server/httphandler/agent.go +++ b/server/httphandler/agent.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-redis licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: wubijie + * Date: Mon Jun 26 15:24:19 2023 +0800 + */ package httphandler import ( diff --git a/server/main.go b/server/main.go index 4f86d5a..77de452 100644 --- a/server/main.go +++ b/server/main.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-redis licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: wubijie + * Date: Mon Jun 26 15:24:19 2023 +0800 + */ package main import ( diff --git a/server/plugin/plugin_redis.go b/server/plugin/plugin_redis.go index a53d343..508d762 100644 --- a/server/plugin/plugin_redis.go +++ b/server/plugin/plugin_redis.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-redis licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: wubijie + * Date: Mon Jun 26 15:24:19 2023 +0800 + */ package plugin import ( diff --git a/server/router/router.go b/server/router/router.go index c27182f..5012e18 100644 --- a/server/router/router.go +++ b/server/router/router.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-redis licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: wubijie + * Date: Mon Jun 26 15:24:19 2023 +0800 + */ package router import ( diff --git a/server/service/agent.go b/server/service/agent.go index 5f668f3..2b33735 100644 --- a/server/service/agent.go +++ b/server/service/agent.go @@ -1,3 +1,10 @@ +/* + * Copyright (c) KylinSoft Co., Ltd. 2024.All rights reserved. + * PilotGo-plugin-redis licensed under the Mulan Permissive Software License, Version 2. + * See LICENSE file for more details. + * Author: wubijie + * Date: Mon Jun 26 15:24:19 2023 +0800 + */ package service import ( -- Gitee