Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions slicops/package_data/sliclet/hello.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
fields:
message:
prototype: String
ui:
writable: false
value: Hello World!

ui_layout:
- message
14 changes: 14 additions & 0 deletions slicops/sliclet/hello.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
"""Hello World Sliclet

:copyright: Copyright (c) 2026 The Board of Trustees of the Leland Stanford Junior University, through SLAC National Accelerator Laboratory (subject to receipt of any required approvals from the U.S. Dept. of Energy). All Rights Reserved.
:license: http://github.com/slaclab/slicops/LICENSE
"""

import slicops.sliclet


class Hello(slicops.sliclet.Base):
pass


CLASS = Hello