13 lines
236 B
Python
13 lines
236 B
Python
import plugin_api
|
|
import rng
|
|
|
|
|
|
def start():
|
|
"""create an instance of Gadget, configure it and return to Rust"""
|
|
g = plugin_api.Gadget()
|
|
g.push(1)
|
|
g.push(2)
|
|
g.push(3)
|
|
g.prop = rng.get_random_number()
|
|
return g
|