Created
July 17, 2016 09:26
-
-
Save awstanley/6eff3ef88d87d17306729a1ba21e4fad to your computer and use it in GitHub Desktop.
Elusive Target Tracker (downloads current manifest; will throw an error an m will be nil if it's down). Obviously it needs work, but it was developed rapidly during ET #6 as a proof of concept.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"github.com/awstanley/Hitman/Go/misc/elusivetracker" | |
"net/http" | |
) | |
func main() { | |
client := &http.Client{} | |
m := elusivetracker.FetchManifest(client) | |
m.FetchContent(client, "") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment