1
0
mirror of https://github.com/gsi-upm/senpy synced 2025-08-24 02:22:20 +00:00

First tests

This commit is contained in:
J. Fernando Sánchez
2014-11-07 19:12:21 +01:00
parent a5e79bead3
commit eaf65f0c6b
11 changed files with 199 additions and 86 deletions

View File

@@ -0,0 +1,9 @@
from senpy.plugins import SenpyPlugin
class Prueba(SenpyPlugin):
def __init__(self, **kwargs):
super(Prueba, self).__init__(name="prueba",
version="4.0",
**kwargs)
plugin = Prueba()