Quickcord
Quickcord is a WIP Swift wrapper for Discord's Bot API.
Features
(As of right now)
- Connecting the the gateway and identifying.
- Phrasing for Channel/User/Permissions that you can't access
- Some form of caching Guilds, that includes less than half the things required.
- Man this code sucks right now
- Literally everything else that you might need for a bot.
Example Code
import Quickcord
print("Hello, world!")
let bot = Quickcord(token: "token")
bot.on.ready { data in
print("Logged in as \(data.user.fullName)!")
}
bot.connect()