mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-12-21 06:19:38 +08:00
21 lines
497 B
PHP
21 lines
497 B
PHP
<?php
|
||
/*
|
||
|--------------------------------------------------------------------------
|
||
| Update Sources
|
||
|--------------------------------------------------------------------------
|
||
|
|
||
| Urls to get update information
|
||
|
|
||
*/
|
||
|
||
return array(
|
||
'github' => [
|
||
'name' => 'GitHub',
|
||
'update_url' => 'https://work.prinzeugen.net/update.json',
|
||
],
|
||
'local' => [
|
||
'name' => 'LocalHost(开发用)',
|
||
'update_url' => 'http://127.0.0.1/test/update.json'
|
||
]
|
||
);
|