Skip to content

Commit

Permalink
chore: update package name: FlareCMD
Browse files Browse the repository at this point in the history
  • Loading branch information
soulteary committed Jan 5, 2024
1 parent 7a4249f commit 59b8515
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cmd/cmd.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package cmd
package FlareCMD

import (
"log/slog"
Expand Down
2 changes: 1 addition & 1 deletion cmd/define.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package cmd
package FlareCMD

const (
DEFAULT_PORT = 5005
Expand Down
2 changes: 1 addition & 1 deletion cmd/flags.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package cmd
package FlareCMD

import (
"fmt"
Expand Down
2 changes: 1 addition & 1 deletion cmd/flags_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package cmd_test
package FlareCMD_test

import (
"bytes"
Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package main

import (
"github.com/soulteary/flare/cmd"
FlareCMD "github.com/soulteary/flare/cmd"
FlareServer "github.com/soulteary/flare/internal/server"
)

func main() {
flags := cmd.Parse()
flags := FlareCMD.Parse()
FlareServer.StartDaemon(&flags)
}

0 comments on commit 59b8515

Please sign in to comment.