Updating Makefile and fedictl sharing same header file
This commit is contained in:
parent
20bb0ef788
commit
8d56747f1c
8
Makefile
8
Makefile
@ -1,7 +1,9 @@
|
|||||||
GOFILES = fedilogue.go ctl.go headers.go instance.go poll.go stream.go web.go db.go config.go oauth.go
|
FEDILOGUE_GOFILES = fedilogue.go ctl.go headers.go instance.go poll.go stream.go web.go db.go config.go oauth.go
|
||||||
|
FEDICTL_GOFILES = fedictl.go headers.go
|
||||||
|
|
||||||
build:
|
build:
|
||||||
go build -o fedilogue $(GOFILES)
|
go build -o fedilogue $(FEDILOGUE_GOFILES)
|
||||||
|
go build -o fedictl $(FEDICTL_GOFILES)
|
||||||
run:
|
run:
|
||||||
go run $(GOFILES)
|
go run $(GOFILES)
|
||||||
acctkey:
|
acctkey:
|
||||||
@ -9,4 +11,4 @@ acctkey:
|
|||||||
openssl genrsa -out keys/acctprivate.pem 1024
|
openssl genrsa -out keys/acctprivate.pem 1024
|
||||||
openssl rsa -in keys/acctprivate.pem -pubout -out keys/acctpublic.pem
|
openssl rsa -in keys/acctprivate.pem -pubout -out keys/acctpublic.pem
|
||||||
clean:
|
clean:
|
||||||
rm -f fedilogue
|
rm -f fedilogue fedictl
|
||||||
|
19
fedictl.go
19
fedictl.go
@ -10,25 +10,6 @@ import (
|
|||||||
"io"
|
"io"
|
||||||
)
|
)
|
||||||
|
|
||||||
type CommandMap struct {
|
|
||||||
Type string `json:"Type"`
|
|
||||||
Endpoint string `json:"Endpoint"`
|
|
||||||
}
|
|
||||||
|
|
||||||
// Instance's new min_id value
|
|
||||||
type RunningInstance struct {
|
|
||||||
Software string `json:"software"`
|
|
||||||
Status int `json:"status"`
|
|
||||||
LastRun string `json:"lastrun"`
|
|
||||||
CaptureType string `json:"capturetype"`
|
|
||||||
}
|
|
||||||
|
|
||||||
type ResponseBack struct {
|
|
||||||
Type string `json:"Type"`
|
|
||||||
Message string `json:"Message"`
|
|
||||||
RunningInstances map[string]RunningInstance `json:"RunningInstances"`
|
|
||||||
}
|
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|
||||||
shutdownPtr := flag.Bool("shutdown", false, "Shutdown server")
|
shutdownPtr := flag.Bool("shutdown", false, "Shutdown server")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user