mirror of
https://github.com/discourse/discourse.git
synced 2024-12-22 13:18:24 +08:00
6 lines
137 B
Ruby
6 lines
137 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Migrations::Converters::Base
|
||
|
StepStats = Struct.new(:progress, :warning_count, :error_count)
|
||
|
end
|