Archived
1
0

Add command to publish traces

This commit is contained in:
Mercier Pierre-Olivier 2013-09-14 09:35:56 +02:00
parent 42835c5930
commit 580564e358

View File

@ -0,0 +1,20 @@
#! /usr/bin/env perl
use v5.10.1;
use strict;
use warnings;
use lib "../../";
use ACU::API::Base;
use ACU::API::Projects;
if ($#ARGV == 1)
{
API::Projects::add_traces($ARGV[0], $ARGV[1]);
}
else
{
say "$0 <project_id> <traces_id>";
}