2020-05-08 16:38:26 +00:00
|
|
|
package tins2020
|
|
|
|
|
|
|
|
import (
|
2020-05-17 08:56:56 +00:00
|
|
|
"opslag.de/schobers/zntg"
|
2020-05-08 16:38:26 +00:00
|
|
|
)
|
|
|
|
|
2020-05-17 08:56:56 +00:00
|
|
|
const appName = "tins2020_botanim"
|
2020-05-08 16:38:26 +00:00
|
|
|
|
2020-05-17 08:56:56 +00:00
|
|
|
func UserDir() (string, error) { return zntg.UserDir(appName) }
|
2020-05-08 16:38:26 +00:00
|
|
|
|
2020-05-17 08:56:56 +00:00
|
|
|
func UserFile(name string) (string, error) { return zntg.UserFile(appName, name) }
|