Source code for etcdb.etcddate

[docs]class EtcdDate(object): """ An object holding a date value """ def __init__(self, year, month, day): self.year = year self.month = month self.day = day