init commit

This commit is contained in:
cloudwithax 2023-03-15 14:47:30 -04:00
parent 6fb765463e
commit b55d881508
7 changed files with 28 additions and 0 deletions

4
README.md Normal file
View File

@ -0,0 +1,4 @@
# Flare
A fully-featured Lavalink client library for Lua that works seamlessly with Discordia.

8
flare.code-workspace Normal file
View File

@ -0,0 +1,8 @@
{
"folders": [
{
"path": "."
}
],
"settings": {}
}

5
init.lua Normal file
View File

@ -0,0 +1,5 @@
return {
node = require("node"),
player = require("player")
pool = require("pool")
}

0
libs/node.lua Normal file
View File

0
libs/player.lua Normal file
View File

0
libs/pool.lua Normal file
View File

11
package.lua Normal file
View File

@ -0,0 +1,11 @@
return {
name = 'cloudwithax/flare',
version = '1.0.0',
homepage = 'https://github.com/cloudwithax/flare',
license = 'MIT',
files = {
'**.lua'
},
tags = { 'discord', 'api', 'lavalink' },
author = 'cloudwithax',
}