package WIT::Const;

# WIT - constants
# Copyright (C) 2009 Matous J. Fialka, <http://mjf.cz/>
# Released under the terms of The MIT License

use strict;
use warnings;

our (@ISA, @EXPORT);

BEGIN {
        require Exporter;

        @ISA    = qw(Exporter);
        @EXPORT = qw(RE_SCOPE);
}

use constant RE_SCOPE => qr/^(global|\/?(\d+(\/\d+)?)?)$/;

1;
