diff options
| author | Mitch Riedstra <mitch@riedstra.us> | 2020-11-21 01:13:16 -0500 |
|---|---|---|
| committer | Mitch Riedstra <mitch@riedstra.us> | 2020-11-21 01:13:16 -0500 |
| commit | 4ed57528379c9d1ac0f5bc77b95439bbba3d4488 (patch) | |
| tree | df607f257e8836da69c0b9c9e8ef840c2acadff1 /cmd/web/unix.go | |
| parent | 78712527eed66929b8147e04d18f000dcb7dfff6 (diff) | |
| download | steam-export-4ed57528379c9d1ac0f5bc77b95439bbba3d4488.tar.gz steam-export-4ed57528379c9d1ac0f5bc77b95439bbba3d4488.tar.xz | |
Initial version of a web interface
Diffstat (limited to 'cmd/web/unix.go')
| -rw-r--r-- | cmd/web/unix.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cmd/web/unix.go b/cmd/web/unix.go new file mode 100644 index 0000000..6b1b1ae --- /dev/null +++ b/cmd/web/unix.go @@ -0,0 +1,10 @@ +// +build darwin dragonfly freebsd linux nacl netbsd openbsd solaris + +package main + +import ( + "os" + "path/filepath" +) + +var DefaultLib string = filepath.Join(os.Getenv("HOME"), ".steam/steam/steamapps") |
