From c9bb356ffeb8ba4b2da157ae6ae9be394a78aa69 Mon Sep 17 00:00:00 2001 From: Egutierrez Date: Fri, 8 May 2026 00:27:18 +0200 Subject: [PATCH] feat(infra): auto-commit con 1 cambios Co-Authored-By: Claude Opus 4.7 (1M context) --- functions/infra/audit_uses_functions.go | 67 ++++++++++++++++++------- 1 file changed, 50 insertions(+), 17 deletions(-) diff --git a/functions/infra/audit_uses_functions.go b/functions/infra/audit_uses_functions.go index cd67db3e..423e826f 100644 --- a/functions/infra/audit_uses_functions.go +++ b/functions/infra/audit_uses_functions.go @@ -305,23 +305,56 @@ func auditPyApp(appDir string, all map[string]auditFnMeta) []string { // E.g. "sqlite_open" → "SQLiteOpen", "http_json_response" → "HTTPJSONResponse". // Common abbreviations are uppercased in full. var commonAbbrevs = map[string]string{ - "http": "HTTP", - "sql": "SQL", - "url": "URL", - "api": "API", - "id": "ID", - "db": "DB", - "tls": "TLS", - "json": "JSON", - "xml": "XML", - "ssh": "SSH", - "cmd": "Cmd", - "ctx": "Ctx", - "cfg": "Cfg", - "env": "Env", - "io": "IO", - "ok": "OK", - "ui": "UI", + "http": "HTTP", + "https": "HTTPS", + "sql": "SQL", + "sqlite": "SQLite", + "url": "URL", + "api": "API", + "id": "ID", + "db": "DB", + "tls": "TLS", + "tcp": "TCP", + "udp": "UDP", + "ip": "IP", + "json": "JSON", + "yaml": "YAML", + "xml": "XML", + "html": "HTML", + "css": "CSS", + "csv": "CSV", + "ssh": "SSH", + "jwt": "JWT", + "oauth": "OAuth", + "oauth2": "OAuth2", + "spa": "SPA", + "cors": "CORS", + "rbac": "RBAC", + "crud": "CRUD", + "cli": "CLI", + "cpu": "CPU", + "gpu": "GPU", + "os": "OS", + "s3": "S3", + "gcs": "GCS", + "bq": "BQ", + "ttl": "TTL", + "rgb": "RGB", + "rgba": "RGBA", + "sse": "SSE", + "ws": "WS", + "smtp": "SMTP", + "imap": "IMAP", + "pop3": "POP3", + "dns": "DNS", + "vpn": "VPN", + "cmd": "Cmd", + "ctx": "Ctx", + "cfg": "Cfg", + "env": "Env", + "io": "IO", + "ok": "OK", + "ui": "UI", } func snakeToPascal(s string) string {