Refactor import, edit go module with github.com

This commit is contained in:
Mario
2023-10-05 21:40:34 +02:00
parent dbcff8d002
commit 9b4b399df0
9 changed files with 24 additions and 24 deletions

10
main.go
View File

@ -1,19 +1,19 @@
package main
import (
"beelzebub/builder"
"beelzebub/parser"
"flag"
"github.com/mariocandela/beelzebub/builder"
"github.com/mariocandela/beelzebub/parser"
log "github.com/sirupsen/logrus"
)
func main() {
var (
quit = make(chan struct{})
configurationsCorePath string
quit = make(chan struct{})
configurationsCorePath string
configurationsServicesDirectory string
)
)
flag.StringVar(&configurationsCorePath, "confCore", "./configurations/beelzebub.yaml", "Provide the path of configurations core")
flag.StringVar(&configurationsServicesDirectory, "confServices", "./configurations/services/", "Directory config services")