Finished up downloading

This commit is contained in:
Belac Darkstorm
2017-04-09 01:44:02 -05:00
parent 695ce815d9
commit a0213d1886
4 changed files with 7 additions and 7 deletions
+1 -3
View File
@@ -1,13 +1,11 @@
package appimg
type appimg struct {
url string
name string
}
func newApp(url, name string) appimg {
func newApp(name string) appimg {
var out appimg
out.url = url
out.name = name
return out
}