Rename monorepo from shiritori-go to jichanorg

This commit is contained in:
Elnu 2023-07-20 13:18:03 -07:00
parent 848175efde
commit 1036ea930f
5 changed files with 8 additions and 8 deletions

View file

@ -4,8 +4,8 @@ import (
"log"
"net/http"
. "git.elnu.com/ElnuDev/shiritori-go/shiritori"
"git.elnu.com/ElnuDev/shiritori-go/shiritori/api"
. "git.elnu.com/ElnuDev/jichanorg/shiritori"
"git.elnu.com/ElnuDev/jichanorg/shiritori/api"
)
func main() {

2
go.mod
View file

@ -1,3 +1,3 @@
module git.elnu.com/ElnuDev/shiritori-go
module git.elnu.com/ElnuDev/jichanorg
go 1.20

View file

@ -4,8 +4,8 @@ import (
"fmt"
"net/http"
"git.elnu.com/ElnuDev/shiritori-go/httputils"
. "git.elnu.com/ElnuDev/shiritori-go/shiritori"
"git.elnu.com/ElnuDev/jichanorg/httputils"
. "git.elnu.com/ElnuDev/jichanorg/shiritori"
)
func GenerateApiEvents(clients *ClientSet) httputils.Handler {

View file

@ -3,8 +3,8 @@ package api
import (
"net/http"
"git.elnu.com/ElnuDev/shiritori-go/httputils"
. "git.elnu.com/ElnuDev/shiritori-go/shiritori"
"git.elnu.com/ElnuDev/jichanorg/httputils"
. "git.elnu.com/ElnuDev/jichanorg/shiritori"
)
func GenerateApiSubmit(clients *ClientSet) httputils.Handler {

View file

@ -3,7 +3,7 @@ package shiritori
import (
"fmt"
"git.elnu.com/ElnuDev/shiritori-go/httputils"
"git.elnu.com/ElnuDev/jichanorg/httputils"
)
type Client = chan []httputils.SseEvent