refactor: move shoots driver to driver_ext

This commit is contained in:
lilong.129
2025-02-10 13:35:22 +08:00
parent 3038fb7430
commit 1ec383180b
19 changed files with 564 additions and 681 deletions

5
pkg/uixt/types/driver.go Normal file
View File

@@ -0,0 +1,5 @@
package types
import "errors"
var ErrDriverNotImplemented = errors.New("driver method not implemented")