11 lines
240 B
Ruby
11 lines
240 B
Ruby
# typed: true
|
|
# frozen_string_literal: true
|
|
T.bind(self, T.all(Rake::DSL, Object))
|
|
|
|
namespace :bluesky do
|
|
desc "Start the Firehose monitor for Bluesky"
|
|
task monitor: :environment do
|
|
Tasks::Bluesky::FirehoseMonitor.new.run
|
|
end
|
|
end
|