This commit is contained in:
parent
7cedf4a46f
commit
d59c6b9f39
3 changed files with 13 additions and 1 deletions
11
main.go
11
main.go
|
@ -3,6 +3,7 @@ package main
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
"log"
|
"log"
|
||||||
"os"
|
"os"
|
||||||
|
@ -13,6 +14,16 @@ import (
|
||||||
"git.sr.ht/~adnano/go-gemini/certificate"
|
"git.sr.ht/~adnano/go-gemini/certificate"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
var (
|
||||||
|
fileSrvHost string
|
||||||
|
fileSrvPort string
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
flag.StringVar(&fileSrvHost, "fileSrvHost", "", "file push server host")
|
||||||
|
flag.StringVar(&fileSrvPort, "fileSrvPort", "", "file push server port")
|
||||||
|
}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
certificates := &certificate.Store{}
|
certificates := &certificate.Store{}
|
||||||
certificates.Register("localhost")
|
certificates.Register("localhost")
|
||||||
|
|
|
@ -24,3 +24,4 @@ Pagrindėnės temas paskėrstītas par kateguorėjės. Kuožnos fails gal turie
|
||||||
|
|
||||||
{{last_posts}}
|
{{last_posts}}
|
||||||
|
|
||||||
|
=> /x vėsė straipsnē
|
||||||
|
|
|
@ -7,7 +7,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
func GetSummery() string {
|
func GetSummery() string {
|
||||||
conn, err := net.Dial("tcp", "127.0.0.1:8001")
|
conn, err := net.Dial("tcp", "127.0.0.1:8301")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err.Error())
|
panic(err.Error())
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue