Add Documentation API

This commit is contained in:
Howl
2016-06-13 22:40:01 +02:00
parent 32738aaae0
commit a65cf086f0
4 changed files with 98 additions and 1 deletions

View File

@@ -1,5 +1,7 @@
package common
import "strconv"
// Int converts s to an int. If s in an invalid int, it defaults to 0.
func Int(s string) int {
r, _ := strconv.Atoi(s)