"""
Add utility functions for the latency pipeline wrapper here.
"""

from mined_metric.builder.pmav.notify_pmav_results import NotifyResults

def main():
    notifier = NotifyResults(
        metric_id = "slac_junction_offline",
        pci_s3_folder = "ntlj",
    )
    notifier.main()

if __name__ == "__main__":
    main()
