Skip to content

Commit

Permalink
v0.8.5 [HOTFIX] 在 endpoint_custom.go 导入遗漏的 strings
Browse files Browse the repository at this point in the history
  • Loading branch information
x5iu committed Aug 21, 2024
1 parent 3fee728 commit 7f2d7ce
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion endpoint_custom.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@

package main

import "github.com/spf13/cobra"
import (
"strings"

"github.com/spf13/cobra"
)

var endpoint string

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ func init() {
var (
MoonPalace = &cobra.Command{
Use: "moonpalace",
Version: "v0.8.4",
Version: "v0.8.5",
Short: "MoonPalace is a command-line tool for debugging the Moonshot AI HTTP API",
SilenceErrors: true,
SilenceUsage: true,
Expand Down

0 comments on commit 7f2d7ce

Please sign in to comment.