Example Usage
# installation
cargo install cloudcheck
# lookup command
cloudcheck lookup 8.8.8.8
# output:
[
{
"name": "Google",
"tags": ["cloud"],
"short_description": "A suite of cloud computing services provided by Google",
"long_description": "Google Cloud Platform provides infrastructure, platform, and software services for businesses and developers"
}
]
cloudcheck lookup asdf.amazon.com
# output:
[
{
"name": "Amazon",
"tags": ["cloud"],
"short_description": "A comprehensive cloud computing platform provided by Amazon",
"long_description": "Amazon Web Services offers infrastructure services, storage, and computing power"
}
]
# serve command - start REST API server
cloudcheck serve
# Server listening on http://127.0.0.1:8080
# Swagger UI available at http://127.0.0.1:8080/swagger-ui
# OpenAPI spec available at http://127.0.0.1:8080/api-docs/openapi.json
# serve with custom host and port
cloudcheck serve --host 0.0.0.0 --port 3000