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