10 lines
201 B
Python
10 lines
201 B
Python
![]() |
#!/usr/bin/env python3
|
||
|
# Entrypoint/script to convert CTF trace data to a pickle file
|
||
|
# TODO
|
||
|
|
||
|
from tracetools_analysis.conversion.ctf import *
|
||
|
|
||
|
def main():
|
||
|
print('main called')
|
||
|
ctf_to_pickle()
|