23 lines
401 B
Go
23 lines
401 B
Go
|
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() {
|
||
|
|
||
|
}
|