feat: basic schedule

This commit is contained in:
2026-03-18 01:11:53 +00:00
parent d177114ddb
commit a85ac23a6b
12 changed files with 922 additions and 4 deletions
+14
View File
@@ -0,0 +1,14 @@
package schedule
import (
"velox-bot/internal/commands/schedule/public"
"github.com/bwmarrin/discordgo"
)
var (
Schedule *discordgo.ApplicationCommand = public.Schedule
)
func ScheduleHandler(s *discordgo.Session, i *discordgo.InteractionCreate) { public.ScheduleHandler(s, i) }