#!/usr/bin/python3
#
# Check if module can be loaded

import rfc3161ng

def main():
    exit(0)

if '__main__' == __name__:
    main()
