feat: scaffold remove command foundations

This commit is contained in:
Rogee
2025-10-29 18:21:01 +08:00
parent ceea09f7be
commit 446bd46b95
25 changed files with 994 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
package remove
import "errors"
var (
// ErrNoTokens indicates that no removal tokens were provided.
ErrNoTokens = errors.New("at least one non-empty token is required")
)