Nearly done with download :)

This commit is contained in:
Belac Darkstorm
2017-04-09 01:26:31 -05:00
parent 01556c1eb0
commit 695ce815d9
7 changed files with 221 additions and 19 deletions
+13
View File
@@ -0,0 +1,13 @@
package appimg
type appimg struct {
url string
name string
}
func newApp(url, name string) appimg {
var out appimg
out.url = url
out.name = name
return out
}