Skip to content

Commit

Permalink
Format code for consistency and improve readability in main.go
Browse files Browse the repository at this point in the history
  • Loading branch information
abaldeweg authored Jan 27, 2025
1 parent fae0b95 commit f1956a7
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions logs_import/main.go
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
package main

import (
"github.com/abaldeweg/warehouse-server/logs_import/cmd"
"time"
"time"

"github.com/abaldeweg/warehouse-server/logs_import/cmd"
)

func main() {
go cmd.Execute()
go cmd.Execute()

for {
time.Sleep(1 * time.Second)
}
for {
time.Sleep(1 * time.Second)
}
}

0 comments on commit f1956a7

Please sign in to comment.