asciinema.org/app/services/asciicast_processor.rb

9 lines
166 B
Ruby
Raw Normal View History

class AsciicastProcessor
def process(asciicast)
AsciicastSnapshotUpdater.new.update(asciicast)
AsciicastFramesFileUpdater.new.update(asciicast)
end
end