#!/usr/bin/env python3
# Copyright (c) 2017 Arista Networks, Inc.  All rights reserved.
# Arista Networks, Inc. Confidential and Proprietary.

# This module gathers the Isis 'snapshot' core from the Isis agent over 
# stream sockets and is run within the context of a VRF namespace by 
# connecting to the Isis agent in that network namespace over port 9992

from __future__ import absolute_import, division, print_function
from Snapshot import doSnapshot

if __name__ == '__main__':
   doSnapshot( 'isis'  ) 

