From 217e5d14df82f9a6dad5dc5d42beb78630a6290d Mon Sep 17 00:00:00 2001 From: what Date: Mon, 5 Jun 2023 17:32:10 +0800 Subject: [PATCH] =?UTF-8?q?[feat]=20job=20=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- job.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/job.go b/job.go index 92a74d7..70d0427 100644 --- a/job.go +++ b/job.go @@ -1,8 +1,6 @@ package contracts import ( - "fmt" - "github.com/samber/do" ) @@ -27,7 +25,7 @@ type JobBase struct { } func (JobBase) Handle(any) error { - return fmt.Errorf("") + return nil } func NewJobBase(container *do.Injector) Job {