14 lines
209 B
Go
14 lines
209 B
Go
package test
|
|
|
|
import (
|
|
"github.com/fsnotify/fsnotify"
|
|
"github.com/wailsapp/wails"
|
|
)
|
|
|
|
type Games struct {
|
|
filename string
|
|
runtime *wails.Runtime
|
|
logger *wails.CustomLogger
|
|
watcher *fsnotify.Watcher
|
|
}
|