Merge pull request #3 from studiokaiji/fix-utility-bug

moduleをgithub.com/studiokaiji/nostr-webhost/nostrhに変更
This commit is contained in:
kaiji
2023-08-22 09:00:14 +09:00
committed by GitHub
12 changed files with 11 additions and 12 deletions

View File

View File

@@ -9,7 +9,6 @@ before:
builds:
- env:
- CGO_ENABLED=0
binary: nostrh
goos:
- linux
- windows

View File

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

View File

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

View File

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

View File

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