mirror of
https://github.com/ZwareBear/awx.git
synced 2026-05-02 12:51:48 -05:00
12 lines
190 B
Python
12 lines
190 B
Python
from awxkit.api.resources import resources
|
|
from . import base
|
|
from . import page
|
|
|
|
|
|
class MeshVisualizer(base.Base):
|
|
|
|
pass
|
|
|
|
|
|
page.register_page(resources.mesh_visualizer, MeshVisualizer)
|