#!/usr/bin/env python
# -*- coding: utf-8 -*-

################################################################################
#
# ROSA Auditd Logs Filter
#
# Copyright (c) 2014   LLC "STC IT ROSA"
# License: GPLv3+
# Authors:
#     Dmitry Ashkadov <dmitry.ashkadov@rosalab.ru>
#
# This file is a part of ROSA Auditd Logs Filter.
#
# ROSA Auditd Logs Filter 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,
# or (at your option) any later version.
#
# ROSA Auditd Logs Filter 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 ROSA Auditd Logs Filter; if not, write to the
# Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
################################################################################

# system
import sys

# raudit
import rosa_audit_log_viewer as viewer


app = viewer.Application(sys.argv)
sys.exit(app.exec_())

