From 14511b320186c8eb4a2905a348fed533bb9a4814 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Wed, 28 Aug 2024 00:14:30 +0200 Subject: chore(gonf): change Promise() methods return type to be more specific --- pkg/commands.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg/commands.go') diff --git a/pkg/commands.go b/pkg/commands.go index 096da11..4222de7 100644 --- a/pkg/commands.go +++ b/pkg/commands.go @@ -43,7 +43,7 @@ func (c *CommandPromise) IfRepaired(p ...Promise) Promise { return c } -func (c *CommandPromise) Promise() Promise { +func (c *CommandPromise) Promise() *CommandPromise { commands = append(commands, c) return c } -- cgit v1.2.3