# frozen_string_literal: true module GoNative module Commands module IOS class EmbedExtensions < Base desc 'Extracts extension targets from a project' def call(**) Plugins::IOS::EmbedExtensions.call end end end end end