Files
aptly/api/api.go
T
2015-01-12 10:56:54 +01:00

21 lines
424 B
Go

// Package api provides implementation of aptly REST API
package api
import (
"github.com/gin-gonic/gin"
"github.com/smira/aptly/aptly"
)
// Lock order acquisition (canonical):
// 1. RemoteRepoCollection
// 2. LocalRepoCollection
// 3. SnapshotCollection
// 4. PublishedRepoCollection
// GET /api
func apiVersion(c *gin.Context) {
api := make(map[string]string)
api["Version"] = aptly.Version
c.JSON(200, api)
}