Help for clock.ts

Project

clock

Function

ts

Sample CLI

gway clock ts

Full Code

def ts(*, utc=False) -> str:
    """Return the current timestamp in ISO-8601 format."""
    return now(utc=utc).isoformat().replace("+00:00", "Z" if utc else "")