pdk-core 1.6.0-rc.1

PDK Core
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (c) 2025, Salesforce, Inc.,
// All rights reserved.
// For full license text, see the LICENSE.txt file

fn main() {
    protobuf_codegen::Codegen::new()
        .pure()
        .includes(["proto"])
        .input("proto/verify_signature.proto")
        .cargo_out_dir("protos")
        .run_from_script();
}