From 3530154438e75cf0a8a280f019e3345df7226658 Mon Sep 17 00:00:00 2001 From: shipengqi Date: Wed, 13 Sep 2023 13:17:07 +0800 Subject: [PATCH] chore: update document and workfolws --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 54b4d0a..bf340ee 100644 --- a/README.md +++ b/README.md @@ -31,10 +31,10 @@ cmd := &cobra.Command{ func newSubAction1() *action.Action { return &action.Action{ - Name: "sub-action1", - Executable: func(act *action.Action) bool { - // do something - return true + Name: "sub-action1", + Executable: func(act *action.Action) bool { + // do something + return true }, Run: func(act *action.Action) error { return nil }, }