wip: refactor taskers

This commit is contained in:
2023-02-09 10:42:15 +03:00
parent 8676450122
commit 8a0880fcfc
18 changed files with 755 additions and 62 deletions

9
pkg/status/status.go Normal file
View File

@@ -0,0 +1,9 @@
package status
type Status string
const (
Unknown = "UNKNOWN"
Successful = "SUCCESSFUL"
FailGasPrice = "FAIL_GAS_PRICE"
)