Archived
1
0
This repository has been archived on 2021-10-08. You can view files and clone it, but cannot push or open issues or pull requests.
ACU/commands/project/pub_traces.pl
2013-09-14 09:35:56 +02:00

21 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>";
}