Browse Source

Added skeleton for STS

Alois Mahdal (@azzgoat) 11 years ago
parent
commit
aae7bafadf
1 changed files with 17 additions and 0 deletions
  1. 17
    0
      lib/SugarTrail/STS.pm

+ 17
- 0
lib/SugarTrail/STS.pm View File

@@ -0,0 +1,17 @@
1
+package SugarTrail::STS;
2
+# STS holder
3
+# new()
4
+
5
+use strict;
6
+use warnings;
7
+use Carp;
8
+
9
+sub new {
10
+    my $class = shift;
11
+    my $args = shift;
12
+    my $self = {};
13
+    $self->{args} = $args;
14
+    return bless $self, $class;
15
+}
16
+
17
+1;