tnn 0.1.3

A quality of life developer tool to interact with Telenor services
Documentation
1
2
3
4
5
6
7
8
9
use crate::core::api::NAME;
use crate::extension::Call;
use anyhow::Result;

use crate::core::api::Core;

pub struct WithCore(pub Box<dyn Fn(Core) -> Result<Core>>);

pub const WITH_CORE: Call<WithCore, ()> = crate::call!(WithCore, (), "WITH_CORE", NAME);