(err error)
| 22 | const DB_PATH = "./foo.db" |
| 23 | |
| 24 | func checkError(err error) { |
| 25 | if err != nil { |
| 26 | panic(err) |
| 27 | } |
| 28 | } |
| 29 | func getTimeStamp() string { |
| 30 | return time.Now().Format("2006-01-02 15:04:05") |
| 31 | } |
no outgoing calls
no test coverage detected