run gofmt

This commit is contained in:
Bernhard B 2020-07-03 17:34:28 +02:00
parent e1c2853494
commit b62b243a90

View File

@ -289,13 +289,10 @@ func NewApi(signalCliConfig string, attachmentTmpDir string) *Api {
// @Router /v1/about [get] // @Router /v1/about [get]
func (a *Api) About(c *gin.Context) { func (a *Api) About(c *gin.Context) {
about := About{SupportedApiVersions: []string{"v1", "v2"}, BuildNr: 2} about := About{SupportedApiVersions: []string{"v1", "v2"}, BuildNr: 2}
c.JSON(200, about) c.JSON(200, about)
} }
// @Summary Register a phone number. // @Summary Register a phone number.
// @Tags Devices // @Tags Devices
// @Description Register a phone number with the signal network. // @Description Register a phone number with the signal network.