1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#![feature(min_specialization)]
use serde::{Deserialize, Serialize};
use tea_codec::{pricing::Priced, serde::TypeId};
pub mod error;
extern crate tea_codec as tea_sdk;
pub const NAME: &[u8] = b"tea:adapter";
#[derive(Debug, Clone, Serialize, Deserialize, TypeId, Priced)]
#[price(10000)]
#[response(Vec<u8>)]
pub struct InternalHttpRequest(pub Vec<u8>);
#[derive(Debug, Clone, Serialize, Deserialize, TypeId, Priced)]
#[price(10000)]
#[response(())]
pub struct RegisterHttp(pub Vec<String>);
#[derive(Debug, Clone, Serialize, Deserialize, TypeId, Priced)]
#[price(10000)]
#[response(Vec<u8>)]
pub struct HttpRequest {
pub action: String,
pub payload: Vec<u8>,
}