mirror of
https://github.com/discourse/discourse.git
synced 2024-12-19 18:04:45 +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
|