23 lines
391 B
Go
23 lines
391 B
Go
|
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
|
||
|
}
|
||
|
|
||
|
func (f *FinerApplication) Render() gin.H {
|
||
|
return gin.H{}
|
||
|
}
|