summaryrefslogtreecommitdiff
path: root/test/data/regobjects2.py
blob: 5c28b5111627a927dc2c69aaf319ba231153ace2 (plain)
1
2
3
4
5
6
7
8
from logilab.common.registry import RegistrableObject, RegistrableInstance, yes

class MyRegistrableInstance(RegistrableInstance):
    __regid__ = 'appobject3'
    __select__ = yes()
    __registry__ = 'zereg'

instance = MyRegistrableInstance()