Skip to content
Snippets Groups Projects
Select Git revision
  • 7f46afcb3e0e9eb9cfbd11156f0527bef9f9497d
  • master default protected
  • v1.4.5
  • v1.4.4
  • v1.4.3
  • v1.4.2
  • v1.4.1
  • v1.4.0
  • v1.3.10
  • v1.3.9
  • v1.3.8
  • v1.3.7
  • v1.3.6
  • v1.3.5
  • v1.3.4
  • v1.3.3
  • v1.3.2
  • v1.3.1
  • v1.3.0
  • v1.2.9
  • v1.2.8
  • v1.2.7
22 results

image-board

  • Clone with SSH
  • Clone with HTTPS
  • RandomChars's avatar
    Ophestra authored
    7f46afcb
    History

    Image Board

    Taggable image board in 1209 lines of code.

    Get it:

    go get random.chars.jp/git/image-board

    Client example:

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