Implemented forum overview

This commit is contained in:
2016-11-19 02:58:00 +09:00
parent e23f843450
commit b5be7e9cef
17 changed files with 130 additions and 13 deletions

View File

@ -3,7 +3,7 @@ package main
import "fmt"
// Converts anything into a string
func s(v interface{}) string {
func toString(v interface{}) string {
return fmt.Sprint(v)
}