diff options
author | 2023-09-25 21:18:48 +0200 | |
---|---|---|
committer | 2023-09-25 21:18:48 +0200 | |
commit | cd30c25b08dc5ecd048e54c8abbbecd72309ab5e (patch) | |
tree | 5defffb410945e3c4dcff8c2b3b410034588aaba /lib/bootstrap.php | |
parent | e1b911fc1f3416d49c5ad5cc68587f64ab8890eb (diff) | |
download | rss-bridge-cd30c25b08dc5ecd048e54c8abbbecd72309ab5e.tar.gz rss-bridge-cd30c25b08dc5ecd048e54c8abbbecd72309ab5e.tar.zst rss-bridge-cd30c25b08dc5ecd048e54c8abbbecd72309ab5e.zip |
refactor (#3708)
Diffstat (limited to 'lib/bootstrap.php')
-rw-r--r-- | lib/bootstrap.php | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/bootstrap.php b/lib/bootstrap.php index dc1c0f04..bc584541 100644 --- a/lib/bootstrap.php +++ b/lib/bootstrap.php @@ -12,20 +12,12 @@ * @link https://github.com/rss-bridge/rss-bridge */ -/** Path to the root folder of RSS-Bridge (where index.php is located) */ -const PATH_ROOT = __DIR__ . '/../'; - -/** Path to the bridges library */ - /** Path to the formats library */ const PATH_LIB_FORMATS = __DIR__ . '/../formats/'; /** Path to the caches library */ const PATH_LIB_CACHES = __DIR__ . '/../caches/'; -/** Path to the actions library */ -const PATH_LIB_ACTIONS = __DIR__ . '/../actions/'; - /** Path to the cache folder */ const PATH_CACHE = __DIR__ . '/../cache/'; |