#!/usr/bin/env ruby # frozen_string_literal: true require "circle_orbit" require "thor" module CircleOrbit module Scripts class CheckComments < Thor desc "render", "check for new comments in Spaces posts and push them to Orbit" def render client = CircleOrbit::Client.new client.comments end end end end