Skip to content

Commit

Permalink
Merge pull request #6 from whdalsrnt/master
Browse files Browse the repository at this point in the history
refactor: refactor for python core 2.0 compatibility
  • Loading branch information
whdalsrnt authored Nov 3, 2023
2 parents a64f58f + 88e05e5 commit 20a7dad
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 0 deletions.
Empty file.
File renamed without changes.
11 changes: 11 additions & 0 deletions src/spaceone/statistics/interface/grpc/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from spaceone.core.pygrpc.server import GRPCServer
from .history import History
from .resource import Resource
from .schedule import Schedule

_all_ = ['app']

app = GRPCServer()
app.add_service(History)
app.add_service(Resource)
app.add_service(Schedule)
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 20a7dad

Please sign in to comment.