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
|
package adapter
|
||||||
|
|
||||||
import (
|
import (
|
||||||
. "forge.lightcrystal.systems/lightcrystal/underbbs/models"
|
. "forge.lightcrystal.systems/nilix/underbbs/models"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Adapter interface {
|
type Adapter interface {
|
||||||
|
|
|
@ -9,7 +9,7 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"forge.lightcrystal.systems/lightcrystal/underbbs/models"
|
"forge.lightcrystal.systems/nilix/underbbs/models"
|
||||||
)
|
)
|
||||||
|
|
||||||
type anonAPAdapter struct {
|
type anonAPAdapter struct {
|
||||||
|
|
|
@ -4,7 +4,7 @@ import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
. "forge.lightcrystal.systems/lightcrystal/underbbs/models"
|
. "forge.lightcrystal.systems/nilix/underbbs/models"
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/url"
|
"net/url"
|
||||||
"os"
|
"os"
|
||||||
|
|
|
@ -2,7 +2,7 @@ package adapter
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
. "forge.lightcrystal.systems/lightcrystal/underbbs/models"
|
. "forge.lightcrystal.systems/nilix/underbbs/models"
|
||||||
madon "github.com/McKael/madon"
|
madon "github.com/McKael/madon"
|
||||||
"log"
|
"log"
|
||||||
"os"
|
"os"
|
||||||
|
|
|
@ -2,7 +2,7 @@ package adapter
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
. "forge.lightcrystal.systems/lightcrystal/underbbs/models"
|
. "forge.lightcrystal.systems/nilix/underbbs/models"
|
||||||
"github.com/yitsushi/go-misskey"
|
"github.com/yitsushi/go-misskey"
|
||||||
mkcore "github.com/yitsushi/go-misskey/core"
|
mkcore "github.com/yitsushi/go-misskey/core"
|
||||||
mkm "github.com/yitsushi/go-misskey/models"
|
mkm "github.com/yitsushi/go-misskey/models"
|
||||||
|
|
|
@ -5,7 +5,7 @@ import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
. "forge.lightcrystal.systems/lightcrystal/underbbs/models"
|
. "forge.lightcrystal.systems/nilix/underbbs/models"
|
||||||
nostr "github.com/nbd-wtf/go-nostr"
|
nostr "github.com/nbd-wtf/go-nostr"
|
||||||
"log"
|
"log"
|
||||||
"os"
|
"os"
|
||||||
|
|
|
@ -10,8 +10,8 @@ import (
|
||||||
"runtime"
|
"runtime"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"forge.lightcrystal.systems/lightcrystal/underbbs/adapter"
|
"forge.lightcrystal.systems/nilix/underbbs/adapter"
|
||||||
"forge.lightcrystal.systems/lightcrystal/underbbs/models"
|
"forge.lightcrystal.systems/nilix/underbbs/models"
|
||||||
)
|
)
|
||||||
|
|
||||||
func GetConfigLocation() string {
|
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
|
go 1.22.0
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@ import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"forge.lightcrystal.systems/lightcrystal/underbbs/adapter"
|
|
||||||
"forge.lightcrystal.systems/lightcrystal/underbbs/models"
|
|
||||||
"forge.lightcrystal.systems/nilix/quartzgun/renderer"
|
"forge.lightcrystal.systems/nilix/quartzgun/renderer"
|
||||||
"forge.lightcrystal.systems/nilix/quartzgun/router"
|
"forge.lightcrystal.systems/nilix/quartzgun/router"
|
||||||
"forge.lightcrystal.systems/nilix/quartzgun/util"
|
"forge.lightcrystal.systems/nilix/quartzgun/util"
|
||||||
|
"forge.lightcrystal.systems/nilix/underbbs/adapter"
|
||||||
|
"forge.lightcrystal.systems/nilix/underbbs/models"
|
||||||
"html/template"
|
"html/template"
|
||||||
"log"
|
"log"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
|
@ -3,10 +3,10 @@ package server
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"errors"
|
"errors"
|
||||||
"forge.lightcrystal.systems/lightcrystal/underbbs/adapter"
|
|
||||||
"forge.lightcrystal.systems/lightcrystal/underbbs/models"
|
|
||||||
"forge.lightcrystal.systems/nilix/quartzgun/cookie"
|
"forge.lightcrystal.systems/nilix/quartzgun/cookie"
|
||||||
"forge.lightcrystal.systems/nilix/quartzgun/renderer"
|
"forge.lightcrystal.systems/nilix/quartzgun/renderer"
|
||||||
|
"forge.lightcrystal.systems/nilix/underbbs/adapter"
|
||||||
|
"forge.lightcrystal.systems/nilix/underbbs/models"
|
||||||
"golang.org/x/time/rate"
|
"golang.org/x/time/rate"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"log"
|
"log"
|
||||||
|
|
|
@ -12,8 +12,8 @@ import (
|
||||||
"strconv"
|
"strconv"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"forge.lightcrystal.systems/lightcrystal/underbbs/cli"
|
"forge.lightcrystal.systems/nilix/underbbs/cli"
|
||||||
"forge.lightcrystal.systems/lightcrystal/underbbs/server"
|
"forge.lightcrystal.systems/nilix/underbbs/server"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|
Loading…
Reference in a new issue