add load applications

This commit is contained in:
2026-08-30 21:17:32 +07:00
parent 3b15fb3a2b
commit c0b5ceb65f
28 changed files with 1536 additions and 139 deletions
+6 -4
View File
@@ -109,8 +109,9 @@ func mapKeys(o []*storytelling.Key) []*proto.Key {
func mapApplication(o *storytelling.Application) *proto.Application {
return &proto.Application{
Name: o.Name,
Image: o.Image,
Name: o.Name,
Image: o.Image,
FileType: o.FileType,
}
}
@@ -167,8 +168,9 @@ func convertKeys(o []*proto.Key) []*storytelling.Key {
func convertApplication(o *proto.Application) *storytelling.Application {
return &storytelling.Application{
Name: textFormatter.FormatString(o.Name),
Image: o.Image,
Name: textFormatter.FormatString(o.Name),
Image: o.Image,
FileType: o.FileType,
}
}