Created
July 14, 2021 20:13
-
-
Save rodber/05b49a1b5e0dc3df0ff31bdc3d6a9436 to your computer and use it in GitHub Desktop.
Showoff
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
├── api-v1 | |
│ └── api | |
│ └── 1 | |
│ └── upload | |
│ └── POST.php | |
├── api-v4 | |
│ └── api | |
│ └── 4 | |
│ ├── account | |
│ │ └── settings | |
│ │ └── {name} | |
│ │ └── PATCH.php | |
│ ├── albums | |
│ │ ├── bulk | |
│ │ │ └── parent | |
│ │ │ └── PATCH.php | |
│ │ ├── {id} | |
│ │ │ ├── DELETE.php | |
│ │ │ ├── like | |
│ │ │ │ ├── DELETE.php | |
│ │ │ │ └── POST.php | |
│ │ │ └── PATCH.php | |
│ │ ├── list | |
│ │ │ └── GET.php | |
│ │ └── POST.php | |
│ ├── bans | |
│ │ ├── ipv4 | |
│ │ │ ├── {ip} | |
│ │ │ │ ├── DELETE.php | |
│ │ │ │ └── PATCH.php | |
│ │ │ └── POST.php | |
│ │ └── ipv6 | |
│ │ ├── {ip} | |
│ │ │ ├── DELETE.php | |
│ │ │ └── PATCH.php | |
│ │ └── POST.php | |
│ ├── categories | |
│ │ ├── DELETE.php | |
│ │ ├── PATCH.php | |
│ │ └── POST.php | |
│ ├── images | |
│ │ ├── bulk | |
│ │ │ ├── album | |
│ │ │ │ └── PATCH.php | |
│ │ │ ├── approve | |
│ │ │ │ └── PATCH.php | |
│ │ │ ├── category | |
│ │ │ │ └── PATCH.php | |
│ │ │ └── nsfw | |
│ │ │ └── PATCH.php | |
│ │ ├── {id} | |
│ │ │ ├── approve | |
│ │ │ │ └── PATCH.php | |
│ │ │ ├── DELETE.php | |
│ │ │ ├── like | |
│ │ │ │ ├── DELETE.php | |
│ │ │ │ └── POST.php | |
│ │ │ └── PATCH.php | |
│ │ ├── list | |
│ │ │ └── GET.php | |
│ │ └── upload | |
│ │ ├── base64 | |
│ │ │ └── POST.php | |
│ │ ├── binary | |
│ │ │ └── POST.php | |
│ │ └── url | |
│ │ └── POST.php | |
│ ├── imports | |
│ │ ├── {id} | |
│ │ │ ├── DELETE.php | |
│ │ │ ├── GET.php | |
│ │ │ ├── PATCH.php | |
│ │ │ ├── process | |
│ │ │ │ └── POST.php | |
│ │ │ ├── reset | |
│ │ │ │ └── POST.php | |
│ │ │ └── resume | |
│ │ │ └── POST.php | |
│ │ └── POST.php | |
│ ├── notifications | |
│ │ └── social | |
│ │ ├── GET.php | |
│ │ └── {id} | |
│ │ └── PATCH.php | |
│ ├── stats | |
│ │ └── rebuild | |
│ │ └── POST.php | |
│ ├── storages | |
│ │ ├── {id} | |
│ │ │ ├── migrate | |
│ │ │ │ └── POST.php | |
│ │ │ ├── PATCH.php | |
│ │ │ └── stats | |
│ │ │ └── regen | |
│ │ │ └── POST.php | |
│ │ └── POST.php | |
│ ├── tools | |
│ │ ├── id | |
│ │ │ └── {id} | |
│ │ │ ├── decode | |
│ │ │ │ └── GET.PHP | |
│ │ │ └── encode | |
│ │ │ └── GET.php | |
│ │ └── probe | |
│ │ └── POST.php | |
│ └── users | |
│ ├── {id} | |
│ │ ├── assets | |
│ │ │ ├── avatar | |
│ │ │ │ ├── DELETE.php | |
│ │ │ │ └── POST.php | |
│ │ │ └── background | |
│ │ │ ├── DELETE.php | |
│ │ │ └── POST.php | |
│ │ ├── DELETE.php | |
│ │ ├── disconnect | |
│ │ │ └── POST.php | |
│ │ ├── export | |
│ │ │ └── GET.php | |
│ │ └── follow | |
│ │ ├── DELETE.php | |
│ │ └── POST.php | |
│ ├── list | |
│ │ └── GET.php | |
│ └── POST.php |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment