class Async::Clock

def as_json(...)

@returns [Hash] The JSON-compatible hash.

Convert the clock to a JSON-compatible hash.
def as_json(...)
	{
		started: self.started,
		total: self.total,
	}
end