(str string)
| 516 | } |
| 517 | |
| 518 | func escapeXML(str string) (string, error) { |
| 519 | buff := bytes.NewBuffer(nil) |
| 520 | if err := xml.EscapeText(buff, []byte(str)); err != nil { |
| 521 | return "", err |
| 522 | } |
| 523 | return buff.String(), nil |
| 524 | } |
| 525 | |
| 526 | func getSignedApp(c echo.Context, app storage.App) error { |
| 527 | file, err := app.GetFile(storage.AppSignedFile) |
no outgoing calls