feat: project add & list

This commit is contained in:
2026-03-18 00:40:13 +00:00
parent e33eea6d24
commit 10c2efef7d
9 changed files with 555 additions and 2 deletions
+14
View File
@@ -0,0 +1,14 @@
package projects
import (
"velox-bot/internal/commands/projects/public"
"github.com/bwmarrin/discordgo"
)
var (
Projects *discordgo.ApplicationCommand = public.Projects
)
func ProjectsHandler(s *discordgo.Session, i *discordgo.InteractionCreate) { public.ProjectsHandler(s, i) }