summaryrefslogtreecommitdiff
path: root/README.md
blob: 9aba6a5004a7bf6a15e26d3e0191ca54267dd569 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Image Board
-----------
Taggable image board in 1272 lines of code.

Get it:
```shell
go get random.chars.jp/git/image-board
```

Client example:
```go
package main

import (
	"fmt"
	"random.chars.jp/git/image-board/client"
)

func main() {
	if remote, err := client.New("http://localhost:7777"); err != nil {
		panic(err)
	} else {
		fmt.Printf("Connected to remote revision %v compat %v.", remote.Revision, remote.Compat)
	}
}
```