Rename package to bloat

This commit is contained in:
r 2020-01-01 15:58:27 +00:00
parent cad01cb1f8
commit e9bd72306e
16 changed files with 38 additions and 34 deletions

2
.gitignore vendored
View File

@ -1,2 +1,2 @@
web
bloat
database

View File

@ -2,12 +2,12 @@
GO=go
all: web
all: bloat
PHONY:
web: main.go PHONY
$(GO) build $(GOFLAGS) -o web main.go
bloat: main.go PHONY
$(GO) build $(GOFLAGS) -o bloat main.go
run: web
./web
run: bloat
./bloat

4
README
View File

@ -1,4 +1,4 @@
Web - A web client for Mastodon Network[1]
bloat - A web client for Mastodon Network[1]
Features:
@ -28,7 +28,7 @@ Edit the provided config file. See the default.conf file for more details.
$ ed default.conf
Run the binary
$ ./web
$ ./bloat
You can now access the frontend at http://localhost:8080, which is the default
listen address. You can also setup a reverse HTTP proxy to serve the frontend over

View File

@ -6,7 +6,8 @@ import (
"io"
"os"
"strings"
"web/model"
"bloat/model"
)
type config struct {

2
go.mod
View File

@ -1,4 +1,4 @@
module web
module bloat
go 1.13

12
main.go
View File

@ -9,12 +9,12 @@ import (
"strings"
"time"
"web/config"
"web/kv"
"web/renderer"
"web/repository"
"web/service"
"web/util"
"bloat/config"
"bloat/kv"
"bloat/renderer"
"bloat/repository"
"bloat/service"
"bloat/util"
)
var (

View File

@ -1 +0,0 @@
package model

View File

@ -1 +0,0 @@
package model

View File

@ -1,8 +1,8 @@
package renderer
import (
"bloat/model"
"mastodon"
"web/model"
)
type HeaderData struct {

View File

@ -2,8 +2,9 @@ package repository
import (
"encoding/json"
"web/kv"
"web/model"
"bloat/kv"
"bloat/model"
)
type appRepository struct {

View File

@ -2,8 +2,9 @@ package repository
import (
"encoding/json"
"web/kv"
"web/model"
"bloat/kv"
"bloat/model"
)
type sessionRepository struct {

View File

@ -4,9 +4,10 @@ import (
"context"
"errors"
"io"
"mastodon"
"mime/multipart"
"web/model"
"bloat/model"
"mastodon"
)
var (

View File

@ -6,7 +6,8 @@ import (
"log"
"mime/multipart"
"time"
"web/model"
"bloat/model"
)
type loggingService struct {

View File

@ -12,10 +12,10 @@ import (
"net/url"
"strings"
"bloat/model"
"bloat/renderer"
"bloat/util"
"mastodon"
"web/model"
"web/renderer"
"web/util"
)
var (

View File

@ -7,7 +7,8 @@ import (
"path"
"strconv"
"time"
"web/model"
"bloat/model"
"github.com/gorilla/mux"
)

View File

@ -10,7 +10,7 @@
The source code is released under
<a href="https://creativecommons.org/share-your-work/public-domain/cc0" target="_blank">CC0</a>
and is available on
<a href="https://git.freesoftwareextremist.com/web" target="_blank">git.freesoftwareextremist.com/web</a>.
<a href="https://git.freesoftwareextremist.com/bloat" target="_blank">git.freesoftwareextremist.com/bloat</a>.
</P>
</div>