Javacord bot framework focussed around OOP slash command usage
This project exists as a means of making my bot framework more accessible, mainly so I can manage other projects without keeping all my bots in one monolith repo. This framework is far from perfect and lacks a lot, but I use it so that slash commands can have a proper OOP implementation while also self-handling registration and re-registration from the Discord API.
Step 1, add the following to your pom.xml
repositories
<repository>
<id>aa07_public</id>
<url>https://mocha.affectedarc07.co.uk/repo/repository/public/</url>
</repository>
Step 2, add the following to your dependencies
<dependency>
<groupId>me.aa07</groupId>
<artifactId>botcore</artifactId>
<version>1.0.2</version>
<type>pom</type>
</dependency>
Step 3, use in your project. Create a class that extends AABotCore
and go off of what methdods need implementing
This project is licensed under GNU GPL-3.0 | You can find a copy inside the LICENSE
file.