openapi-generator/samples/client/petstore/lua/petstore-1.0.0-1.rockspec
William Cheng d5304055ab
Minor improvements to the Lua client generator (#6219)
* minor improvement to lua client gen

* add new files
2020-05-09 14:26:54 +08:00

39 lines
1.2 KiB
Lua

package = "petstore"
version = "1.0.0-1"
source = {
url = "https://github.com/GIT_USER_ID/GIT_REPO_ID.git"
}
description = {
summary = "API client genreated by OpenAPI Generator",
detailed = [[
This is a sample server Petstore server. For this sample, you can use the api key `special-key` to test the authorization filters.]],
homepage = "https://openapi-generator.tech",
license = "Unlicense",
maintainer = "OpenAPI Generator contributors",
}
dependencies = {
"lua >= 5.2",
"http",
"dkjson",
"basexx"
}
build = {
type = "builtin",
modules = {
["petstore.api.pet_api"] = "petstore/api/pet_api.lua";
["petstore.api.store_api"] = "petstore/api/store_api.lua";
["petstore.api.user_api"] = "petstore/api/user_api.lua";
["petstore.model.api_response"] = "petstore/model/api_response.lua";
["petstore.model.category"] = "petstore/model/category.lua";
["petstore.model.inline_object"] = "petstore/model/inline_object.lua";
["petstore.model.inline_object_1"] = "petstore/model/inline_object_1.lua";
["petstore.model.order"] = "petstore/model/order.lua";
["petstore.model.pet"] = "petstore/model/pet.lua";
["petstore.model.tag"] = "petstore/model/tag.lua";
["petstore.model.user"] = "petstore/model/user.lua";
}
}