summaryrefslogtreecommitdiff
path: root/README.md
blob: 4022e153ae51beaecadecc68e233c5dbdc6929f3 (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 with multiple backend implementations.

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

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)
	}
}
```