blank things

trunk
vilmibm 2022-04-10 21:32:02 -05:00
parent e916768c8c
commit 9e0a4cac72
4 changed files with 30 additions and 1 deletions

View File

@ -1,3 +1,15 @@
# bbj2
being a new version of bbj
being a rewrite of [bbj](https://github.com/desvox/bbj). Intended for use on [tilde town](https://tilde.town), but of course can be used elsewhere.
## TODO
- [ ] server
- [ ] config
- [ ] db setup
- [ ] auth
- [ ] authoring
- [ ] fetching
- [ ] user api
- [ ] client

View File

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("bbj2 client")
}

3
go.mod 100644
View File

@ -0,0 +1,3 @@
module git.tilde.town/tildetown/bbj2
go 1.18

View File

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("bbj2 server")
}