Integrate appflowy editor (#1040)

This commit is contained in:
Lucas.Xu 2022-10-22 21:57:44 +08:00 committed by GitHub
parent 8dff9dc67c
commit ad9a4b7d71
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
177 changed files with 4183 additions and 1007 deletions

View file

@ -23,7 +23,7 @@ pub extern "C" fn init_sdk(path: *mut c_char) -> i64 {
let path: &str = c_str.to_str().unwrap();
let server_config = get_client_server_configuration().unwrap();
let config = FlowySDKConfig::new(path, "appflowy", server_config, false).log_filter("info");
let config = FlowySDKConfig::new(path, "appflowy", server_config).log_filter("info");
FLOWY_SDK.get_or_init(|| FlowySDK::new(config));
0