Skip to content

Commit fcd17c2

Browse files
committed
json
1 parent 9f6d9db commit fcd17c2

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

src/opengeodeweb_viewer/rpc/viewer/schemas/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from .set_background_color import *
66
from .reset_visualization import *
77
from .reset_camera import *
8-
from .render_now import *
8+
from .render import *
99
from .picked_ids import *
1010
from .grid_scale import *
1111
from .get_point_position import *
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from dataclasses_json import DataClassJsonMixin
2+
from dataclasses import dataclass
3+
4+
5+
@dataclass
6+
class Render(DataClassJsonMixin):
7+
pass

0 commit comments

Comments
 (0)