Skip to content

Commit 623eada

Browse files
authored
Merge pull request #39 from stat-kwon/master
fix: change interface path
2 parents c5a17cc + e7eee54 commit 623eada

5 files changed

Lines changed: 11 additions & 0 deletions

File tree

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
from spaceone.core.pygrpc.server import GRPCServer
2+
from .cost import Cost
3+
from .data_source import DataSource
4+
from .job import Job
5+
6+
_all_ = ['app']
7+
8+
app = GRPCServer()
9+
app.add_service(Cost)
10+
app.add_service(DataSource)
11+
app.add_service(Job)

src/cloudforet/cost_analysis/interface/grpc/plugin/cost.py renamed to src/cloudforet/cost_analysis/interface/grpc/cost.py

File renamed without changes.

src/cloudforet/cost_analysis/interface/grpc/plugin/data_source.py renamed to src/cloudforet/cost_analysis/interface/grpc/data_source.py

File renamed without changes.

src/cloudforet/cost_analysis/interface/grpc/plugin/job.py renamed to src/cloudforet/cost_analysis/interface/grpc/job.py

File renamed without changes.

src/cloudforet/cost_analysis/interface/grpc/plugin/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)