clicodelog 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
clicodelog/__init__.py ADDED
@@ -0,0 +1,6 @@
1
+ """
2
+ CLI Code Log - Browse, inspect, and export logs from CLI-based AI coding agents.
3
+ """
4
+
5
+ __version__ = "0.1.0"
6
+ __author__ = "monk1337"
clicodelog/__main__.py ADDED
@@ -0,0 +1,6 @@
1
+ """Allow running as `python -m clicodelog`."""
2
+
3
+ from clicodelog.cli import main
4
+
5
+ if __name__ == "__main__":
6
+ main()