File size: 281 Bytes
bf4b95a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from __future__ import annotations

import sys
from pathlib import Path

sys.path.insert(0, str(Path(__file__).resolve().parents[1]))
from nifty_backend.runtime import refresh_daily_data


def main() -> None:
    print(refresh_daily_data())


if __name__ == "__main__":
    main()