update module path
This commit is contained in:
parent
bbf26561f6
commit
508722feb5
11 changed files with 15 additions and 15 deletions
|
@ -1,7 +1,7 @@
|
|||
package adapter
|
||||
|
||||
import (
|
||||
. "forge.lightcrystal.systems/lightcrystal/underbbs/models"
|
||||
. "forge.lightcrystal.systems/nilix/underbbs/models"
|
||||
)
|
||||
|
||||
type Adapter interface {
|
||||
|
|
|
@ -9,7 +9,7 @@ import (
|
|||
"strings"
|
||||
"time"
|
||||
|
||||
"forge.lightcrystal.systems/lightcrystal/underbbs/models"
|
||||
"forge.lightcrystal.systems/nilix/underbbs/models"
|
||||
)
|
||||
|
||||
type anonAPAdapter struct {
|
||||
|
|
|
@ -4,7 +4,7 @@ import (
|
|||
"encoding/json"
|
||||
"errors"
|
||||
"fmt"
|
||||
. "forge.lightcrystal.systems/lightcrystal/underbbs/models"
|
||||
. "forge.lightcrystal.systems/nilix/underbbs/models"
|
||||
"net/http"
|
||||
"net/url"
|
||||
"os"
|
||||
|
|
|
@ -2,7 +2,7 @@ package adapter
|
|||
|
||||
import (
|
||||
"fmt"
|
||||
. "forge.lightcrystal.systems/lightcrystal/underbbs/models"
|
||||
. "forge.lightcrystal.systems/nilix/underbbs/models"
|
||||
madon "github.com/McKael/madon"
|
||||
"log"
|
||||
"os"
|
||||
|
|
|
@ -2,7 +2,7 @@ package adapter
|
|||
|
||||
import (
|
||||
"fmt"
|
||||
. "forge.lightcrystal.systems/lightcrystal/underbbs/models"
|
||||
. "forge.lightcrystal.systems/nilix/underbbs/models"
|
||||
"github.com/yitsushi/go-misskey"
|
||||
mkcore "github.com/yitsushi/go-misskey/core"
|
||||
mkm "github.com/yitsushi/go-misskey/models"
|
||||
|
|
|
@ -5,7 +5,7 @@ import (
|
|||
"encoding/json"
|
||||
"errors"
|
||||
"fmt"
|
||||
. "forge.lightcrystal.systems/lightcrystal/underbbs/models"
|
||||
. "forge.lightcrystal.systems/nilix/underbbs/models"
|
||||
nostr "github.com/nbd-wtf/go-nostr"
|
||||
"log"
|
||||
"os"
|
||||
|
|
|
@ -10,8 +10,8 @@ import (
|
|||
"runtime"
|
||||
"strings"
|
||||
|
||||
"forge.lightcrystal.systems/lightcrystal/underbbs/adapter"
|
||||
"forge.lightcrystal.systems/lightcrystal/underbbs/models"
|
||||
"forge.lightcrystal.systems/nilix/underbbs/adapter"
|
||||
"forge.lightcrystal.systems/nilix/underbbs/models"
|
||||
)
|
||||
|
||||
func GetConfigLocation() string {
|
||||
|
|
2
go.mod
2
go.mod
|
@ -1,4 +1,4 @@
|
|||
module forge.lightcrystal.systems/lightcrystal/underbbs
|
||||
module forge.lightcrystal.systems/nilix/underbbs
|
||||
|
||||
go 1.22.0
|
||||
|
||||
|
|
|
@ -4,11 +4,11 @@ import (
|
|||
"encoding/json"
|
||||
"errors"
|
||||
"fmt"
|
||||
"forge.lightcrystal.systems/lightcrystal/underbbs/adapter"
|
||||
"forge.lightcrystal.systems/lightcrystal/underbbs/models"
|
||||
"forge.lightcrystal.systems/nilix/quartzgun/renderer"
|
||||
"forge.lightcrystal.systems/nilix/quartzgun/router"
|
||||
"forge.lightcrystal.systems/nilix/quartzgun/util"
|
||||
"forge.lightcrystal.systems/nilix/underbbs/adapter"
|
||||
"forge.lightcrystal.systems/nilix/underbbs/models"
|
||||
"html/template"
|
||||
"log"
|
||||
"net/http"
|
||||
|
|
|
@ -3,10 +3,10 @@ package server
|
|||
import (
|
||||
"context"
|
||||
"errors"
|
||||
"forge.lightcrystal.systems/lightcrystal/underbbs/adapter"
|
||||
"forge.lightcrystal.systems/lightcrystal/underbbs/models"
|
||||
"forge.lightcrystal.systems/nilix/quartzgun/cookie"
|
||||
"forge.lightcrystal.systems/nilix/quartzgun/renderer"
|
||||
"forge.lightcrystal.systems/nilix/underbbs/adapter"
|
||||
"forge.lightcrystal.systems/nilix/underbbs/models"
|
||||
"golang.org/x/time/rate"
|
||||
"io/ioutil"
|
||||
"log"
|
||||
|
|
|
@ -12,8 +12,8 @@ import (
|
|||
"strconv"
|
||||
"time"
|
||||
|
||||
"forge.lightcrystal.systems/lightcrystal/underbbs/cli"
|
||||
"forge.lightcrystal.systems/lightcrystal/underbbs/server"
|
||||
"forge.lightcrystal.systems/nilix/underbbs/cli"
|
||||
"forge.lightcrystal.systems/nilix/underbbs/server"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
|
Loading…
Reference in a new issue