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"),
|
2022-06-03 22:17:02 +00:00
|
|
|
LockfilePath: path.Join("FactoryGame", "Mods"),
|
2022-05-02 20:07:15 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
VersionPath: path.Join("Engine", "Binaries", "Win64", "UE4Server-Win64-Shipping.version"),
|
2022-06-03 22:17:02 +00:00
|
|
|
LockfilePath: path.Join("FactoryGame", "Mods"),
|
2022-05-02 20:07:15 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
VersionPath: path.Join("Engine", "Binaries", "Win64", "FactoryGame-Win64-Shipping.version"),
|
2022-06-03 22:17:02 +00:00
|
|
|
LockfilePath: path.Join("FactoryGame", "Mods"),
|
2022-05-02 20:07:15 +00:00
|
|
|
},
|
|
|
|
}
|