daily 不再通过 sys.path 导入 bot/skills_service,skills feed 数据层上移到 shared/。 Co-authored-by: Cursor <cursoragent@cursor.com>
11 lines
233 B
Python
11 lines
233 B
Python
"""Repo-root shared modules (skills feed data, etc.)."""
|
|
|
|
from shared.skills_data import (
|
|
Board,
|
|
format_installs,
|
|
load_feed,
|
|
warm_feed_cache,
|
|
)
|
|
|
|
__all__ = ["Board", "format_installs", "load_feed", "warm_feed_cache"]
|