mirror of
https://github.com/suk-ws/ph-Bookshelf.git
synced 2025-01-18 23:12:23 +08:00
10 lines
224 B
PHP
10 lines
224 B
PHP
|
<?php
|
||
|
|
||
|
define("APP_NAME", "ph-Bookshelf");
|
||
|
define("VERSION", "0.1");
|
||
|
define("GITBOOK_VERSION", "3.2.3");
|
||
|
|
||
|
function get_frontpage_generate_version (): string {
|
||
|
return APP_NAME." ".VERSION." with Gitbook ".GITBOOK_VERSION;
|
||
|
}
|