diff options
author | Julien Dessaux | 2024-08-28 00:14:30 +0200 |
---|---|---|
committer | Julien Dessaux | 2024-08-28 00:15:36 +0200 |
commit | 14511b320186c8eb4a2905a348fed533bb9a4814 (patch) | |
tree | 4b6a0123d688536eae4a3ccc8085a76088d2b294 /pkg/promises.go | |
parent | feat(files): support creating directories (diff) | |
download | gonf-14511b320186c8eb4a2905a348fed533bb9a4814.tar.gz gonf-14511b320186c8eb4a2905a348fed533bb9a4814.tar.bz2 gonf-14511b320186c8eb4a2905a348fed533bb9a4814.zip |
chore(gonf): change Promise() methods return type to be more specific
Diffstat (limited to '')
-rw-r--r-- | pkg/promises.go | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/pkg/promises.go b/pkg/promises.go index 8495650..0198296 100644 --- a/pkg/promises.go +++ b/pkg/promises.go @@ -2,31 +2,10 @@ package gonf type Promise interface { IfRepaired(...Promise) Promise - Promise() Promise Resolve() Status() Status } -//type Operation int -// -//const ( -// AND = iota -// OR -// NOT -//) -// -//func (o Operation) String() string { -// switch o { -// case AND: -// return "and" -// case OR: -// return "or" -// case NOT: -// return "not" -// } -// panic("unknown") -//} - type Status int const ( |