main
1# frozen_string_literal: true
2
3class ApplicationRecord < ActiveRecord::Base
4  UUID = /\A\h{8}-\h{4}-\h{4}-\h{4}-\h{12}\z/.freeze
5  URI_REGEX = /\A#{URI.regexp(%w[http https])}\z/.freeze
6
7  include Flippable
8  self.abstract_class = true
9end