Mostly works! Image loading and caching seems slow
This commit is contained in:
10
src/config/args.py
Normal file
10
src/config/args.py
Normal file
@ -0,0 +1,10 @@
|
||||
import argparse
|
||||
|
||||
|
||||
def create_parser():
|
||||
parser = argparse.ArgumentParser(description="foldsite is a dynamic site generator")
|
||||
parser.add_argument(
|
||||
"--config", type=str, default="config.toml", help="config file path"
|
||||
)
|
||||
|
||||
return parser
|
Reference in New Issue
Block a user