2023-03-02 20:51:47 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Config;
|
|
|
|
|
|
|
|
final class GiteaConfig {
|
2023-03-03 18:40:28 -05:00
|
|
|
public const RAW_ITEMS_URL = 'https://dev.sp-tarkov.com/SPT-AKI/Server/raw/branch/master/project/assets/database/templates/items.json';
|
|
|
|
public const RAW_CUSTOMIZATION_URL = 'https://dev.sp-tarkov.com/SPT-AKI/Server/raw/branch/master/project/assets/database/templates/customization.json';
|
2023-03-02 20:51:47 -05:00
|
|
|
public const LOCALES_GLOBAL_URL = 'https://dev.sp-tarkov.com/api/v1/repos/SPT-AKI/Server/contents/project%2Fassets%2Fdatabase%2Flocales%2Fglobal';
|
2023-03-03 18:40:28 -05:00
|
|
|
public const RAW_LOCALES_GLOBAL_BASE_URL = 'https://dev.sp-tarkov.com/SPT-AKI/Server/raw/branch/master/project/assets/database/locales/global/';
|
2023-03-02 20:51:47 -05:00
|
|
|
}
|