23 lines
581 B
Go
23 lines
581 B
Go
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"),
|
|
},
|
|
{
|
|
VersionPath: path.Join("Engine", "Binaries", "Win64", "UE4Server-Win64-Shipping.version"),
|
|
LockfilePath: path.Join("FactoryGame", "Mods"),
|
|
},
|
|
{
|
|
VersionPath: path.Join("Engine", "Binaries", "Win64", "FactoryGame-Win64-Shipping.version"),
|
|
LockfilePath: path.Join("FactoryGame", "Mods"),
|
|
},
|
|
}
|