24 lines
353 B
Go
24 lines
353 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
)
|
|
|
|
const CACHE_DIR string = "cache"
|
|
|
|
const SET_ICON_CACHE_DIR string = CACHE_DIR + "/seticons/"
|
|
const SET_ICON_FILE_EXTENSION string = ".svg"
|
|
|
|
const ALL_CARDS_CACHE_FILENAME = CACHE_DIR + "/all-cards.json"
|
|
|
|
func check(err error) {
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|
|
|
|
func main() {
|
|
fmt.Println("Hello, world")
|
|
}
|