Restructured to have subpackages, added server communication

This commit is contained in:
2013-02-20 23:43:01 -05:00
parent b193814371
commit 3fc3e3a963
10 changed files with 201 additions and 35 deletions

6
api.go Normal file
View File

@ -0,0 +1,6 @@
package asink
type APIResponse struct {
Status string //may be 'error' or 'success'
Explanation string
}