#!/usr/bin/perl
#use Mooix::Thing;
#use Mooix::Root;
run sub {
	my $this=shift;

	# Register with the heartbeat.
	$this->item($Mooix::Root->system->heartbeat->add(
		object => $this,
		method => "chime",
		interval => 60 * 60, # each hour
		startdate => -1 * $this->_timeoffset, # on the hour
	));
	
	$this->super(@_);
}
