zilliz 1.0.2

TUI and CLI tool for managing Zilliz Cloud clusters and Milvus operations
Documentation
1
2
3
4
5
6
7
8
9
10
use ratatui::prelude::*;

use super::app::App;
use super::views;

/// Root render function: dispatches to the welcome view.
pub fn render(frame: &mut Frame, app: &App) {
    let area = frame.area();
    views::welcome::render(frame, app, area);
}