From 5c4ea83ad85bd7ec5792049f7f4f5b789942904e Mon Sep 17 00:00:00 2001 From: jaketothepast Date: Tue, 21 Jan 2020 19:21:03 -0500 Subject: [PATCH] Librarify my code - for future modules. --- client.go | 2 +- main.go | 9 --------- types.go | 2 +- 3 files changed, 2 insertions(+), 11 deletions(-) delete mode 100644 main.go diff --git a/client.go b/client.go index 875c371..2dc4510 100644 --- a/client.go +++ b/client.go @@ -1,4 +1,4 @@ -package main +package allyinvest import ( "encoding/xml" diff --git a/main.go b/main.go deleted file mode 100644 index d321f19..0000000 --- a/main.go +++ /dev/null @@ -1,9 +0,0 @@ -package main - -func main() { - // Load our environment variables - var api AllyApi - api.Initialize() - - api.MarketQuotes("FEYE", "IBM") -} diff --git a/types.go b/types.go index 76e1de6..115e062 100644 --- a/types.go +++ b/types.go @@ -1,4 +1,4 @@ -package main +package allyinvest import ( "encoding/xml"