File: test-module

package info (click to toggle)
python-rfc3161ng 2.1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 200 kB
  • sloc: python: 597; makefile: 3
file content (12 lines) | stat: -rwxr-xr-x 201 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/python3
#
# Check if module can be loaded

import rfc3161ng

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

if '__main__' == __name__:
    main()