master
Bel LaPointe 2023-04-10 11:10:59 -06:00
parent eaa8debb73
commit ffce678ff6
4 changed files with 12 additions and 24 deletions

23
go.mod
View File

@ -1,25 +1,10 @@
module local/simpleserve module gogs.inhome.blapointe.com/local/simpleserve
go 1.16 go 1.16
replace local/args => ../args
replace local/gziphttp => ../gziphttp
replace local/notes-server/notes/md => ../notes-server/notes/md
replace local/oauth2 => ../oauth2
replace local/router => ../router
replace local/simpleserve => ../simpleserve
replace local/storage => ../storage
replace local/logb => ../logb
require ( require (
local/args v0.0.0-00010101000000-000000000000 gogs.inhome.blapointe.com/local/args master
local/gziphttp v0.0.0-00010101000000-000000000000 gogs.inhome.blapointe.com/local/gziphttp master
local/notes-server/notes/md v0.0.0-00010101000000-000000000000 gogs.inhome.blapointe.com/local/notes-server master
) )

View File

@ -6,10 +6,10 @@ import (
"fmt" "fmt"
"io" "io"
"io/ioutil" "io/ioutil"
"local/args" "gogs.inhome.blapointe.com/local/args"
"local/gziphttp" "gogs.inhome.blapointe.com/local/gziphttp"
"local/notes-server/notes/md" "gogs.inhome.blapointe.com/local/notes-server/notes/md"
"local/simpleserve/simpleserve" "gogs.inhome.blapointe.com/local/simpleserve/simpleserve"
"log" "log"
"net/http" "net/http"
"net/http/httptest" "net/http/httptest"

View File

@ -1,7 +1,7 @@
package main package main
import ( import (
"local/simpleserve/simpleserve" "gogs.inhome.blapointe.com/local/simpleserve/simpleserve"
"net/http" "net/http"
"net/http/httptest" "net/http/httptest"
"net/url" "net/url"

3
simpleserve/go.mod Normal file
View File

@ -0,0 +1,3 @@
module gogs.inhome.blapointe.com/local/simpleserve/simpleserve
go 1.20