File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2929from dms_datastore .update_flagged_data import update_flagged_data
3030from dms_datastore .rationalize_time_partitions import rationalize_time_partitions_cli
3131from dms_datastore .spot_check import spot_check_cli
32-
32+ from dms_datastore . populate_daily import populate_daily_cli
3333
3434@click .group (help = "DMS CLI tools for data processing and extraction." )
3535@click .help_option ("-h" , "--help" ) # Add the help option at the group level
@@ -67,6 +67,9 @@ def cli():
6767cli .add_command (update_flagged_data ,"updated_flagged_data" )
6868cli .add_command (update_repo ,"update_repo" )
6969cli .add_command (rationalize_time_partitions_cli , "rationalize_time_partitions" )
70+ cli .add_command (populate_daily_cli , "populate_daily" )
71+ cli .add_command (spot_check_cli , "spot_check" )
72+
7073
7174if __name__ == "__main__" :
7275 cli ()
Original file line number Diff line number Diff line change @@ -155,3 +155,4 @@ update_repo = "dms_datastore.update_repo:main"
155155update_flagged_data = " dms_datastore.update_flagged_data:main"
156156rationalize_time_partitions = " dms_datastore.rationalize_time_partitions:rationalize_time_partitions_cli"
157157spot_check = " dms_datastore.spot_check:spot_check_cli"
158+ populate_daily = " dms_datastore.populate_daily:populate_daily_cli"
You can’t perform that action at this time.
0 commit comments