mirror of
https://github.com/faucetsdn/ryu.git
synced 2025-08-07 07:07:15 +02:00
25 lines
855 B
Python
25 lines
855 B
Python
# Copyright (C) 2011 Nippon Telegraph and Telephone Corporation.
|
|
# Copyright (C) 2011 Isaku Yamahata <yamahata at valinux co jp>
|
|
#
|
|
# This program 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, version 3 of the License.
|
|
#
|
|
# This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
"""
|
|
global flags
|
|
"""
|
|
|
|
import gflags
|
|
|
|
FLAGS = gflags.FLAGS
|
|
|
|
# GLOBAL flags
|
|
gflags.DEFINE_boolean('monkey_patch', False, 'do monkey patch')
|