n5i_plugin_proto/lib.rs
1// SPDX-FileCopyrightText: 2024-2026 The n5i Project
2//
3// SPDX-License-Identifier: AGPL-3.0-or-later
4
5//! Protobuf definitions for n5i plugins
6//!
7//! This crate contains only the protobuf type definitions with minimal dependencies.
8//! For higher-level plugin runtime functionality, use the `n5i-plugin-common` crate.
9
10pub mod api {
11 tonic::include_proto!("n5i_plugin");
12}