ficsit-cli-flake/cli/platforms.go

24 lines
581 B
Go
Raw Normal View History

2022-05-02 20:07:15 +00:00
package cli
import "path"
type Platform struct {
VersionPath string
LockfilePath string
}
var platforms = []Platform{
{
VersionPath: path.Join("Engine", "Binaries", "Linux", "UE4Server-Linux-Shipping.version"),
LockfilePath: path.Join("FactoryGame", "Mods"),
2022-05-02 20:07:15 +00:00
},
{
VersionPath: path.Join("Engine", "Binaries", "Win64", "UE4Server-Win64-Shipping.version"),
LockfilePath: path.Join("FactoryGame", "Mods"),
2022-05-02 20:07:15 +00:00
},
{
VersionPath: path.Join("Engine", "Binaries", "Win64", "FactoryGame-Win64-Shipping.version"),
LockfilePath: path.Join("FactoryGame", "Mods"),
2022-05-02 20:07:15 +00:00
},
}