feat: add member gpg keys

This commit is contained in:
Alexandre Teles
2024-01-16 15:31:07 -03:00
parent 60301fc30b
commit 80cdb3be6a
6 changed files with 38 additions and 13 deletions

View File

@@ -2,17 +2,17 @@
This module provides endpoints for pinging the API.
Routes:
- HEAD /ping: Ping the API.
- GET /ping: Ping the API.
"""
import os
from sanic import Blueprint, HTTPResponse, Request, response
from sanic_ext import openapi
ping: Blueprint = Blueprint(os.path.basename(__file__).strip(".py"))
ping: Blueprint = Blueprint(os.path.basename(__file__).rstrip(".py"))
@ping.head("/ping")
@ping.get("/ping")
@openapi.summary("Ping the API")
async def root(request: Request) -> HTTPResponse:
"""