aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2018-08-12 17:56:43 +0700
committerShulhan <ms@kilabit.info>2018-08-12 17:56:43 +0700
commit4c1db6b109ebda983fd45f549559e35fb4732d57 (patch)
tree8afc8c3544bb133a4a1acae1f969b3a6d7ef1d9f /README.md
parent3e96ff7e4212763fd3cffbc0b2cf3c2da5976fec (diff)
downloadpakakeh.go-4c1db6b109ebda983fd45f549559e35fb4732d57.tar.xz
Update list of libraries and tools
Diffstat (limited to 'README.md')
-rw-r--r--README.md11
1 files changed, 7 insertions, 4 deletions
diff --git a/README.md b/README.md
index 2b2be96b..bcc76728 100644
--- a/README.md
+++ b/README.md
@@ -2,10 +2,13 @@ A repository contains miscellaneous tools and libraries written in Go.
## Library
-* `test` to simplify testing with assert function.
-
-* `ini` to read and write INI file format (specific to Git config format)
+- `lib/ini`, library for reading and writing INI file format (specific to Git
+ config format).
+- `lib/test`, library for simplify testing with assert function.
+- `lib/text`, library for manipulating text, as slice of bytes or as a string.
+- `lib/websocket`, library that implement websocket server or client as
+ specified by RFC6455.
## Tools
-* `gofmtcomment` is a program to convert "/**/" comment into "//"
+- `cmd/gofmtcomment` is a program to convert "/\*\*/" comment into "//"