11 lines
264 B
Python
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() |