Archived
1
0
Fork 0
This repository has been archived on 2021-10-08. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
ACU/commands/project/pub_traces.pl
2013-09-14 09:35:56 +02:00

20 lines
247 B
Perl

#! /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>";
}