use std::error::Error; use sea_orm::{ ActiveModelTrait, ActiveValue}; use start_db::Starter; // use serde_json::json; use tokio; pub mod word_entity; pub mod start_db; #[tokio::main] async fn main() -> Result<(), Box> { let db_info = Starter::connect().await?; // db_info.create_table().await?; let insert_word = word_entity::ActiveModel{ id:ActiveValue::not_set(), bsm: ActiveValue::set("test".to_string()), hz: ActiveValue::set("test".to_string()), py_js: ActiveValue::set("test".to_string()), }; insert_word.insert(&db_info.db).await?; Ok(()) }