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" "fmt"
"time" "time"
"unbewohnte/gochat/log"
"github.com/gorilla/websocket" "github.com/gorilla/websocket"
"unbewohnte.xyz/Unbewohnte/gochat/log"
) )
// Websocket connection paired with the owner // 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 go 1.17

4
src/main.go

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

4
src/server/attachmentHandler.go

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

6
src/server/server.go

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

4
src/server/userHandler.go

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

5
src/server/websocketHandler.go

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

Loading…
Cancel
Save