We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66c1004 commit 215937eCopy full SHA for 215937e
1 file changed
src/lib.rs
@@ -3,6 +3,7 @@
3
//! A minimal plugin that demonstrates the plugin ABI structure.
4
5
use openvcs_core::app_api::PluginError;
6
+use openvcs_core::info;
7
use openvcs_core::openvcs_plugin;
8
9
// Internal helpers - NOT ABI
@@ -17,6 +18,7 @@ mod plugin {
17
18
use super::*;
19
20
pub fn init() -> Result<(), PluginError> {
21
+ info!("Hello, World!");
22
Ok(())
23
}
24
0 commit comments