gstd-codegen 2.0.0

Code generation library for the Gear standard library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (C) Gear Technologies Inc.
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0

#![no_main]

#[gstd::async_init(handle_signal = custom_handle_reply)]
async fn init() {}

#[gstd::async_main(handle_signal = custom_handle_reply)]
async fn main() {}

fn custom_handle_reply() {}