loader logic revised

This commit is contained in:
IliaDenisov
2026-03-16 15:48:00 +02:00
parent cc7ecf6667
commit e6c6970947
13 changed files with 530 additions and 82 deletions
+8 -4
View File
@@ -206,10 +206,14 @@ func (e *client) Run() error {
return nil
}
func (e *client) Shutdown() {
e.window.Close()
}
func (e *client) Shutdown() { e.window.Close() }
func (e *client) Version() string { return version }
func (e *client) OnConnection(bool) {}
func (e *client) Version() string { return version }
func (e *client) OnConnectionError(error) {}
func (e *client) OnStorageError(error) {}
func (e *client) OnServiceError(error) {}