refactor: remove unused BuiltinSkill struct

The struct was not being used anywhere in the codebase, so it's safe to remove it to reduce clutter and improve maintainability.
This commit is contained in:
yumosx 2026-02-26 09:02:49 +08:00
parent 7db45dd4f0
commit 35c1c4bfa4

View file

@ -23,12 +23,6 @@ type AvailableSkill struct {
Tags []string `json:"tags"`
}
type BuiltinSkill struct {
Name string `json:"name"`
Path string `json:"path"`
Enabled bool `json:"enabled"`
}
const maxRetries = 3
func shouldRetry(statusCode int) bool {