require_relative 'collection' require_relative 'collection/static_collection' module Emojidex module Data # listing and search of standard UTF emoji class UTF < Collection include Emojidex::Data::StaticCollection def initialize super @endpoint = 'utf_emoji' load_from_server unless check_and_load_static('utf') @emoji end end end end