mirror of
https://gitea.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-05 04:29:21 +02:00
Rename package to bloat
This commit is contained in:
parent
cad01cb1f8
commit
e9bd72306e
|
@ -1,2 +1,2 @@
|
|||
web
|
||||
bloat
|
||||
database
|
||||
|
|
10
Makefile
10
Makefile
|
@ -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
4
README
|
@ -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
|
||||
|
|
|
@ -6,7 +6,8 @@ import (
|
|||
"io"
|
||||
"os"
|
||||
"strings"
|
||||
"web/model"
|
||||
|
||||
"bloat/model"
|
||||
)
|
||||
|
||||
type config struct {
|
||||
|
|
12
main.go
12
main.go
|
@ -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 (
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
package model
|
|
@ -1 +0,0 @@
|
|||
package model
|
|
@ -1,8 +1,8 @@
|
|||
package renderer
|
||||
|
||||
import (
|
||||
"bloat/model"
|
||||
"mastodon"
|
||||
"web/model"
|
||||
)
|
||||
|
||||
type HeaderData struct {
|
||||
|
|
|
@ -2,8 +2,9 @@ package repository
|
|||
|
||||
import (
|
||||
"encoding/json"
|
||||
"web/kv"
|
||||
"web/model"
|
||||
|
||||
"bloat/kv"
|
||||
"bloat/model"
|
||||
)
|
||||
|
||||
type appRepository struct {
|
||||
|
|
|
@ -2,8 +2,9 @@ package repository
|
|||
|
||||
import (
|
||||
"encoding/json"
|
||||
"web/kv"
|
||||
"web/model"
|
||||
|
||||
"bloat/kv"
|
||||
"bloat/model"
|
||||
)
|
||||
|
||||
type sessionRepository struct {
|
||||
|
|
|
@ -4,9 +4,10 @@ import (
|
|||
"context"
|
||||
"errors"
|
||||
"io"
|
||||
"mastodon"
|
||||
"mime/multipart"
|
||||
"web/model"
|
||||
|
||||
"bloat/model"
|
||||
"mastodon"
|
||||
)
|
||||
|
||||
var (
|
||||
|
|
|
@ -6,7 +6,8 @@ import (
|
|||
"log"
|
||||
"mime/multipart"
|
||||
"time"
|
||||
"web/model"
|
||||
|
||||
"bloat/model"
|
||||
)
|
||||
|
||||
type loggingService struct {
|
||||
|
|
|
@ -12,10 +12,10 @@ import (
|
|||
"net/url"
|
||||
"strings"
|
||||
|
||||
"bloat/model"
|
||||
"bloat/renderer"
|
||||
"bloat/util"
|
||||
"mastodon"
|
||||
"web/model"
|
||||
"web/renderer"
|
||||
"web/util"
|
||||
)
|
||||
|
||||
var (
|
||||
|
|
|
@ -7,7 +7,8 @@ import (
|
|||
"path"
|
||||
"strconv"
|
||||
"time"
|
||||
"web/model"
|
||||
|
||||
"bloat/model"
|
||||
|
||||
"github.com/gorilla/mux"
|
||||
)
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
Loading…
Reference in New Issue