2023-03-20 11:20:37 +00:00
|
|
|
package finder
|
|
|
|
|
|
|
|
import (
|
|
|
|
"personalwebsite/websiteapp"
|
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
|
|
|
)
|
|
|
|
|
|
|
|
type FinerApplication struct {
|
|
|
|
manifest websiteapp.ApplicationManifest
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *FinerApplication) GetManifest() websiteapp.ApplicationManifest {
|
|
|
|
return f.manifest
|
|
|
|
}
|
|
|
|
func (f *FinerApplication) GetId() string {
|
|
|
|
return f.manifest.AppId
|
|
|
|
}
|
|
|
|
|
2023-04-13 01:09:07 +00:00
|
|
|
func (f *FinerApplication) Render(isMobile bool) gin.H {
|
2023-03-20 11:20:37 +00:00
|
|
|
return gin.H{}
|
|
|
|
}
|