Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
I
image board
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
random asynchronous nightmare distributor
image board
Commits
72b38e25
Commit
72b38e25
authored
Sep 7, 2021
by
Ophestra
Browse files
Options
Downloads
Patches
Plain Diff
fancier readme
parent
de238d0f
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+22
-2
22 additions, 2 deletions
README.md
with
22 additions
and
2 deletions
README.md
+
22
−
2
View file @
72b38e25
Image Board
-----------
Taggable image board in 1209 lines of code.
Filesystem-based taggable image board.
Get it:
```
shell
go get random.chars.jp/git/image-board
```
This was based on an idea of a friend that wanted something small and easy to use for sorting images.
\ No newline at end of file
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
)
}
}
```
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment