auto-coder-web 0.1.89__py3-none-any.whl → 0.1.90__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.
auto_coder_web/proxy.py CHANGED
@@ -75,6 +75,9 @@ class ProxyServer:
75
75
  self.app.mount(
76
76
  "/monaco-editor", StaticFiles(directory=os.path.join(self.resource_dir, "monaco-editor")), name="monaco-editor")
77
77
 
78
+ self.app.mount(
79
+ "/sounds", StaticFiles(directory=os.path.join(self.resource_dir, "sounds")), name="sounds")
80
+
78
81
  def setup_routes(self):
79
82
 
80
83
  # Store project_path in app state for dependency injection
auto_coder_web/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = "0.1.89"
1
+ __version__ = "0.1.90"