Add AI SEO tools with FastAPI endpoints and comprehensive services
Co-authored-by: ajay.calsoft <ajay.calsoft@gmail.com>
This commit is contained in:
28
backend/services/seo_tools/__init__.py
Normal file
28
backend/services/seo_tools/__init__.py
Normal file
@@ -0,0 +1,28 @@
|
||||
"""
|
||||
AI SEO Tools Services Package
|
||||
|
||||
This package contains all migrated SEO tools as FastAPI services.
|
||||
Each service provides structured, AI-enhanced SEO analysis capabilities.
|
||||
"""
|
||||
|
||||
from .meta_description_service import MetaDescriptionService
|
||||
from .pagespeed_service import PageSpeedService
|
||||
from .sitemap_service import SitemapService
|
||||
from .image_alt_service import ImageAltService
|
||||
from .opengraph_service import OpenGraphService
|
||||
from .on_page_seo_service import OnPageSEOService
|
||||
from .technical_seo_service import TechnicalSEOService
|
||||
from .enterprise_seo_service import EnterpriseSEOService
|
||||
from .content_strategy_service import ContentStrategyService
|
||||
|
||||
__all__ = [
|
||||
"MetaDescriptionService",
|
||||
"PageSpeedService",
|
||||
"SitemapService",
|
||||
"ImageAltService",
|
||||
"OpenGraphService",
|
||||
"OnPageSEOService",
|
||||
"TechnicalSEOService",
|
||||
"EnterpriseSEOService",
|
||||
"ContentStrategyService"
|
||||
]
|
||||
Reference in New Issue
Block a user