#!/usr/bin/env python3

# desurveil: et kryptografiprogram med support for RSA og OAEP
# Copyright (C) 2011 Niels Serup

# This file is part of desurveil.
#
# desurveil is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation, either version 3 of the License, or (at your
# option) any later version.
#
# desurveil is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with desurveil.  If not, see <http://www.gnu.org/licenses/>.

"""
Dette script kører desurveil som kommandolinjeprogram. Det loader ikke
det globale modul hvis det eksisterer.
"""

import sys
import os

sys.path.insert(0, os.path.split(os.path.dirname(
            os.path.realpath(__file__)))[0])

import desurveil.utility as util

runner = util.command_line_entry()
runner.run()
