()
| 23 | var homeDir string |
| 24 | |
| 25 | func init() { |
| 26 | u, err := user.Current() |
| 27 | if err != nil { |
| 28 | log.Fatalln(err) |
| 29 | } |
| 30 | homeDir = u.HomeDir |
| 31 | } |
| 32 | |
| 33 | func thumbnailURL(hash string) string { |
| 34 | return "http://www.michaelfogleman.com/static/nes/" + hash + ".png" |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…