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

import rfc3161ng

def main():
    timestamper = rfc3161ng.RemoteTimestamper('http://localhost')
    exit(0)

if '__main__' == __name__:
    main()
