diff --git a/slicops/package_data/sliclet/hello.yaml b/slicops/package_data/sliclet/hello.yaml new file mode 100644 index 0000000..2fbf123 --- /dev/null +++ b/slicops/package_data/sliclet/hello.yaml @@ -0,0 +1,9 @@ +fields: + message: + prototype: String + ui: + writable: false + value: Hello World! + +ui_layout: + - message diff --git a/slicops/sliclet/hello.py b/slicops/sliclet/hello.py new file mode 100644 index 0000000..f49eadb --- /dev/null +++ b/slicops/sliclet/hello.py @@ -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