Files
ALwrity/lib/ai_writers/blog_rewriter_updater/ai_blog_rewriter.py
2025-05-04 10:56:41 +05:30

11 lines
264 B
Python

"""
AI Blog Rewriter Module
This module provides the main entry point for the blog rewriter functionality,
importing and using the utility and UI modules.
"""
from .blog_rewriter_ui import write_blog_rewriter
if __name__ == "__main__":
write_blog_rewriter()