Browse Source

Correct go.mod

master
parent
commit
dea7ae9761
  1. 3
      src/api/websocket.go
  2. 2
      src/go.mod
  3. 4
      src/main.go
  4. 4
      src/server/attachmentHandler.go
  5. 6
      src/server/server.go
  6. 4
      src/server/userHandler.go
  7. 5
      src/server/websocketHandler.go

3
src/api/websocket.go

@ -21,8 +21,9 @@ import (
"fmt"
"time"
"unbewohnte/gochat/log"
"github.com/gorilla/websocket"
"unbewohnte.xyz/Unbewohnte/gochat/log"
)
// Websocket connection paired with the owner

2
src/go.mod

@ -1,4 +1,4 @@
module unbewohnte.xyz/Unbewohnte/gochat
module unbewohnte/gochat
go 1.17

4
src/main.go

@ -23,8 +23,8 @@ import (
"os"
"path/filepath"
"unbewohnte.xyz/Unbewohnte/gochat/log"
"unbewohnte.xyz/Unbewohnte/gochat/server"
"unbewohnte/gochat/log"
"unbewohnte/gochat/server"
)
const version string = "0.1.0"

4
src/server/attachmentHandler.go

@ -9,8 +9,8 @@ import (
"path/filepath"
"time"
"unbewohnte.xyz/Unbewohnte/gochat/api"
"unbewohnte.xyz/Unbewohnte/gochat/log"
"unbewohnte/gochat/api"
"unbewohnte/gochat/log"
)
// Handle incoming attachments

6
src/server/server.go

@ -24,9 +24,9 @@ import (
"strings"
"time"
"unbewohnte.xyz/Unbewohnte/gochat/api"
"unbewohnte.xyz/Unbewohnte/gochat/log"
"unbewohnte.xyz/Unbewohnte/gochat/page"
"unbewohnte/gochat/api"
"unbewohnte/gochat/log"
"unbewohnte/gochat/page"
)
// Server structure that glues api logic and http/websocket server together

4
src/server/userHandler.go

@ -21,8 +21,8 @@ import (
"io"
"net/http"
"unbewohnte.xyz/Unbewohnte/gochat/api"
"unbewohnte.xyz/Unbewohnte/gochat/log"
"unbewohnte/gochat/api"
"unbewohnte/gochat/log"
)
// User creation/credentials validation http handler

5
src/server/websocketHandler.go

@ -21,9 +21,10 @@ import (
"net/http"
"time"
"unbewohnte/gochat/api"
"unbewohnte/gochat/log"
"github.com/gorilla/websocket"
"unbewohnte.xyz/Unbewohnte/gochat/api"
"unbewohnte.xyz/Unbewohnte/gochat/log"
)
// Websocket creation handler

Loading…
Cancel
Save