Add NHN Cloud API integration with async task support
Some checks failed
Build and Push Docker Image / build (push) Has been cancelled
Some checks failed
Build and Push Docker Image / build (push) Has been cancelled
- NHN Cloud API packages: token, vpc, compute, nks, storage - REST API endpoints with Swagger documentation - Async task processing for long-running operations - CORS configuration for frontend integration - Enhanced logging for debugging API calls Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
13
nhn/packages/__init__.py
Normal file
13
nhn/packages/__init__.py
Normal file
@ -0,0 +1,13 @@
|
||||
from .token import NHNCloudToken
|
||||
from .compute import ApiCompute
|
||||
from .vpc import ApiVpc
|
||||
from .nks import ApiNks
|
||||
from .storage import ApiStorageObject
|
||||
|
||||
__all__ = [
|
||||
"NHNCloudToken",
|
||||
"ApiCompute",
|
||||
"ApiVpc",
|
||||
"ApiNks",
|
||||
"ApiStorageObject",
|
||||
]
|
||||
Reference in New Issue
Block a user