2021-10-08 21:21:09 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-10-09 18:50:38 +00:00
|
|
|
class Stat < ApplicationRecord
|
2021-10-20 15:58:19 +00:00
|
|
|
INTERVALS = %i[year month day].freeze
|
2021-10-09 18:50:38 +00:00
|
|
|
RESOURCES = %i[builds space_used build_time].freeze
|
|
|
|
end
|