personal-website/apps/finder/finderadmin.go

23 lines
401 B
Go
Raw Normal View History

2023-05-03 21:50:08 +00:00
package finder
import (
"personalwebsite/apps"
"personalwebsite/webfilesystem"
)
type FinderAdminApp struct {
fs *webfilesystem.WebFileSystem
manifest apps.ApplicationManifest
}
func NewFinderAdminApp(webfs *webfilesystem.WebFileSystem) FinderAdminApp {
return FinderAdminApp{
fs: webfs,
manifest: apps.ApplicationManifest{},
}
}
func (f *FinderAdminApp) RenderWindow() {
}