Skip to content

Commit e02f24e

Browse files
authored
Merge pull request #1 from bklynn/master
initial pull request
2 parents fff6870 + e094620 commit e02f24e

19 files changed

+3261
-0
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
# napalm-netiron
2+
3+
![NAPALM logo](static/logo.png?raw=true "NAPALM logo")
4+
25
NAPALM NetIron driver for Brocade / Extreme devices
6+

napalm_netiron/__init__.py

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Copyright 2016 Dravetech AB. All rights reserved.
2+
#
3+
# The contents of this file are licensed under the Apache License, Version 2.0
4+
# (the "License"); you may not use this file except in compliance with the
5+
# License. You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11+
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12+
# License for the specific language governing permissions and limitations under
13+
# the License.
14+
15+
"""napalm.netiron package."""
16+
from napalm_netiron.netiron import NetIronDriver
17+
18+
19+
__all__ = ['NetIronDriver']

0 commit comments

Comments
 (0)