# frozen_string_literal: true module GoNative module Commands module IOS class EmbedScripts < Base desc 'Embeds target scripts in a project' def call(**) Plugins::IOS::EmbedScripts.call end end end end end