moduleをgithub.com/studiokaiji/nostr-webhost/cliに変更

This commit is contained in:
Haruki
2023-08-22 08:25:37 +09:00
parent 95b537c6f6
commit 1330200975
4 changed files with 11 additions and 11 deletions

View File

@@ -11,10 +11,10 @@ import (
"sync" "sync"
"github.com/nbd-wtf/go-nostr" "github.com/nbd-wtf/go-nostr"
"github.com/studiokaiji/nostr-webhost/cmd/consts" "github.com/studiokaiji/nostr-webhost/cli/cmd/consts"
"github.com/studiokaiji/nostr-webhost/cmd/keystore" "github.com/studiokaiji/nostr-webhost/cli/cmd/keystore"
"github.com/studiokaiji/nostr-webhost/cmd/relays" "github.com/studiokaiji/nostr-webhost/cli/cmd/relays"
"github.com/studiokaiji/nostr-webhost/cmd/tools" "github.com/studiokaiji/nostr-webhost/cli/cmd/tools"
"golang.org/x/net/html" "golang.org/x/net/html"
) )

View File

@@ -7,8 +7,8 @@ import (
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
"github.com/nbd-wtf/go-nostr" "github.com/nbd-wtf/go-nostr"
"github.com/studiokaiji/nostr-webhost/cmd/consts" "github.com/studiokaiji/nostr-webhost/cli/cmd/consts"
"github.com/studiokaiji/nostr-webhost/cmd/relays" "github.com/studiokaiji/nostr-webhost/cli/cmd/relays"
) )
func Start(port string) { func Start(port string) {

View File

@@ -1,4 +1,4 @@
module github.com/studiokaiji/nostr-webhost module github.com/studiokaiji/nostr-webhost/cli
go 1.21 go 1.21

View File

@@ -6,10 +6,10 @@ import (
"os" "os"
"github.com/nbd-wtf/go-nostr" "github.com/nbd-wtf/go-nostr"
"github.com/studiokaiji/nostr-webhost/cmd/deploy" "github.com/studiokaiji/nostr-webhost/cli/cmd/deploy"
"github.com/studiokaiji/nostr-webhost/cmd/keystore" "github.com/studiokaiji/nostr-webhost/cli/cmd/keystore"
"github.com/studiokaiji/nostr-webhost/cmd/relays" "github.com/studiokaiji/nostr-webhost/cli/cmd/relays"
"github.com/studiokaiji/nostr-webhost/cmd/server" "github.com/studiokaiji/nostr-webhost/cli/cmd/server"
"github.com/urfave/cli/v2" "github.com/urfave/cli/v2"
) )