From 5a2b088d5567617e9c8e506477ce847d11a24a81 Mon Sep 17 00:00:00 2001 From: storezhang Date: Mon, 28 Oct 2024 16:58:02 +0800 Subject: [PATCH] =?UTF-8?q?refactor(=E9=A1=B9=E7=9B=AE):=20=E6=9A=B4?= =?UTF-8?q?=E9=9C=B2Tasker?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tasker.go | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tasker.go diff --git a/tasker.go b/tasker.go new file mode 100644 index 0000000..c5c2705 --- /dev/null +++ b/tasker.go @@ -0,0 +1,8 @@ +package task + +import ( + "github.com/goexl/task/internal/core" +) + +// Tasker 任务器,用于任务执行逻辑 +type Tasker = core.Tasker