Spaces:
Sleeping
Sleeping
File size: 683 Bytes
ef78361 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | """์ก์
์์ดํ
Feature Plugin.
API: /api/v1/action-items
ADR-018 Phase 2: DB ์ํ๊ด๋ฆฌ
๋
๋ฆฝ ํธ๋ฆฌ๊ฑฐ ๋ถ์: ๋ฆฌํฌํธ ์์ด ์ง์ ํธ๋ฆฌ๊ฑฐ ํ๊ฐ โ ์ ์ฅ
"""
import streamlit as st
from . import overview
FEATURE_CONFIG = {
"key": "action_items",
"name": "์ก์
์์ดํ
",
"icon": "โ
",
"description": "ํธ๋ฆฌ๊ฑฐ ๋ถ์ + ์ก์
์์ดํ
๊ด๋ฆฌ (์ํ ์ถ์ , ๋ด๋น์ ๋ฐฐ์ )",
"api_base": "/api/v1/action-items",
"order": 4,
}
def render(base_ctx):
"""์ก์
์์ดํ
feature ๋ ๋๋ง."""
st.caption("14๊ฐ ํธ๋ฆฌ๊ฑฐ ๊ท์น์ผ๋ก ์ ํธ๋ฅผ ํ์งํ๊ณ ์ก์
์์ดํ
์ผ๋ก ๊ด๋ฆฌํฉ๋๋ค")
overview.render(base_ctx)
|