# frozen_string_literal: true module GoNative module Commands module IOS class EmbedExtensions < Base desc 'Embeds all extensions from plugins to the project' def call(**) Plugins::IOS::EmbedExtensions.call end end end end end