Compare commits
No commits in common. "main" and "v0.2.0" have entirely different histories.
|
|
@ -1,7 +1,2 @@
|
|||
## framework
|
||||
|
||||

|
||||
[](https://github.com/qpixel/framework/stargazers)
|
||||
[](https://pkg.go.dev/github.com/qpixel/framework)
|
||||
|
||||
A discordgo bot framework with argument parsing, argument typesafety, slash command support, and some QOL message response code. Documentation coming soon:tm:
|
||||
# framework
|
||||
A discordgo bot framework with argument parsing, typeguards, and a few other cool tricks. Documentation coming soon:tm:
|
||||
|
|
|
|||
|
|
@ -269,9 +269,6 @@ func findAllOptionArgs(argString []string, keys []string, infoArgs *orderedmap.O
|
|||
continue
|
||||
}
|
||||
vv := iA.(*ArgInfo)
|
||||
if vv.Match == ArgContent {
|
||||
return *args, true, argString, keys
|
||||
}
|
||||
if vv.Required {
|
||||
if vv.TypeGuard != String {
|
||||
var value string
|
||||
|
|
|
|||
Loading…
Reference in New Issue