refactor: loader package

This commit is contained in:
Ilia Denisov
2026-03-15 19:04:43 +02:00
parent 2134386625
commit 1ea03495f6
10 changed files with 5 additions and 88 deletions
+8
View File
@@ -0,0 +1,8 @@
package loader
func (l *loader) clientPluginVersionExists(version string) (bool, error) {
file := resolvePluginFile(version)
_ = file
// check file existence
return false, nil
}