initial planning

This commit is contained in:
2021-06-26 14:08:35 -04:00
parent 84a523f2f8
commit da239cf9ad
18 changed files with 1048 additions and 2 deletions

4
cmd/manage/main.go Normal file
View File

@@ -0,0 +1,4 @@
package main
func main() {
}

15
cmd/serve/main.go Normal file
View File

@@ -0,0 +1,15 @@
package main
import (
"fmt"
"io/fs"
"net/http"
"git.yetaga.in/alazyreader/library/frontend"
)
// test 3
func main() {
subfs, _ := fs.Sub(frontend.Static, "files")
fmt.Println(http.ListenAndServe(":8080", http.FileServer(http.FS(subfs))))
}