mirror of
https://github.com/suk-ws/ph-Bookshelf.git
synced 2024-12-05 09:26:52 +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;
|
|
}
|