retrospring/lib/types.rb
2023-01-01 22:42:50 +01:00

9 lines
160 B
Ruby

# frozen_string_literal: true
require "dry-types"
module Types
include Dry.Types()
RelationshipTypes = Types::String.enum("follow", "block", "mute")
end