gitextract_hd1m2h4_/ ├── .dockerignore ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug-report.md │ │ └── feature-request.md │ ├── config.yml │ ├── stale.yml │ └── workflows/ │ ├── add_to_project.yml │ ├── deploy.yml │ ├── project_high_priority.yml │ ├── project_low_priority.yml │ ├── project_medium_priority.yml │ └── project_on_hold.yml ├── .gitignore ├── .mergify.yml ├── CODEOWNERS ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── bot.py ├── cogs/ │ ├── admin.py │ ├── help.py │ ├── notes.py │ ├── tags.py │ ├── tickets.py │ ├── types/ │ │ ├── __init__.py │ │ ├── botTypes.py │ │ ├── discordTypes.py │ │ ├── globalTypes.py │ │ ├── serverTypes.py │ │ ├── tagTypes.py │ │ ├── templateTypes.py │ │ ├── ticketTypes.py │ │ ├── userStaffTrackingTypes.py │ │ └── userTypes.py │ └── utility.py ├── docs/ │ └── STATUS_TYPES.md ├── ext/ │ ├── checks.py │ └── context.py ├── requirements.txt └── settings.example.json