#gemini #comments #module #engine #attach #windmark

nightly windmark-comments

Windmark 的评论引擎模块

4个版本

0.1.3 2022年4月3日
0.1.2 2022年4月2日
0.1.1 2022年4月1日
0.1.0 2022年4月1日

#attach类别中排名7

GPL-3.0-only

22KB
94

Windmark Comments

crates.io docs.rs github.com

Windmark 的评论引擎模块。

用法

将 Windmark Comments 添加为依赖项

# Cargo.toml

[dependencies]
windmark-comments = "0.1.3"

将 Windmark Comments 作为模块附加(Windmark >= 0.1.8)

// src/main.rs

use windmark::Response;

#[windmark::main]
fn main() -> Result<(), Box<dyn std::error::Error>> {
  windmark::Router::new()
    .set_private_key_file("windmark_comments_private.pem")
    .set_certificate_file("windmark_comments_public.pem")
    .mount("/", Box::new(|_| Response::Success("Hello, World!".into())))
    .set_error_handler(Box::new(|_| {
      Response::PermanentFailure("This route does not exist!".into())
    }))
    // Attach Windmark Comments
    .attach_stateless(windmark_comments::module)
    .run()
    .await
}

将 Windmark Comments 作为模块附加(Windmark <= 0.1.7)

// src/main.rs

use windmark::Response;

#[windmark::main]
fn main() -> Result<(), Box<dyn std::error::Error>> {
  windmark::Router::new()
    .set_private_key_file("windmark_comments_private.pem")
    .set_certificate_file("windmark_comments_public.pem")
    .mount("/", Box::new(|_| Response::Success("Hello, World!".into())))
    .set_error_handler(Box::new(|_| {
      Response::PermanentFailure("This route does not exist!".into())
    }))
    // Attach Windmark Comments
    .attach(windmark_comments::module)
    .run()
    .await
}

示例

示例可以在examples目录中找到。

许可证

本项目采用GNU通用公共许可证v3.0

依赖项

~12MB
~231K SLoC