├── .github └── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── config.yml │ └── documentation-update.md ├── Documentation ├── Frequently Asked Questions.md ├── Mission Statement.md ├── Rules & Ratings.md └── Terms & Conditions.md ├── README.md └── SECURITY.md /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sheezy-Art/sheezy-hub/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sheezy-Art/sheezy-hub/HEAD/.github/ISSUE_TEMPLATE/documentation-update.md -------------------------------------------------------------------------------- /Documentation/Frequently Asked Questions.md: -------------------------------------------------------------------------------- 1 | This document has moved to https://sheezy.art/faqs 2 | -------------------------------------------------------------------------------- /Documentation/Mission Statement.md: -------------------------------------------------------------------------------- 1 | This document has moved to https://sheezy.art/faqs 2 | -------------------------------------------------------------------------------- /Documentation/Rules & Ratings.md: -------------------------------------------------------------------------------- 1 | This document has moved to https://sheezy.art/rules 2 | -------------------------------------------------------------------------------- /Documentation/Terms & Conditions.md: -------------------------------------------------------------------------------- 1 | This document has moved to https://sheezy.art/terms 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sheezy-Art/sheezy-hub/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sheezy-Art/sheezy-hub/HEAD/SECURITY.md --------------------------------------------------------------------------------