created main.go with packages:

fmt
log
io/ioutil
net/http

type:
Page

func:
Page.save
master
Aldrnari 2 years ago
parent 4bcd9882e3
commit 4021ead815

@ -0,0 +1,17 @@
package main
import (
"fmt"
"log"
"io/ioutil"
"net/http"
)
type Page struct {
Title string
Body []byte
}
func (p *Page) save() error {
return ioutil.WriteFile(p.Title + ".txt", p.Body, 0600)
}
Loading…
Cancel
Save