# frozen_string_literal: true # # Copyright (c) 2019-present, Blue Marble Payroll, LLC # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. # module Airspace # Holds shared data among how to internally access data. module InfoKeys DATA_KEY = 'd' METADATA_KEY = 'm' SEPARATOR_CHAR = ':' end end