Changelog 0.3.0

This commit is contained in:
Mukhtar Akere
2024-11-30 15:46:58 +01:00
parent df2aa4e361
commit a51364d150
53 changed files with 2019 additions and 679 deletions
+5 -1
View File
@@ -1,6 +1,7 @@
package main
import (
"context"
"flag"
"goBlack/cmd"
"goBlack/common"
@@ -17,6 +18,9 @@ func main() {
if err != nil {
log.Fatal(err)
}
cmd.Start(conf)
ctx := context.Background()
if err := cmd.Start(ctx, conf); err != nil {
log.Fatal(err)
}
}