alexa 0.1.1

A library for building Alexa (Amazon Echo) skills
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
extern crate serde_codegen;

use std::env;
use std::path::Path;

pub fn main() {
    let out_dir = env::var_os("OUT_DIR").unwrap();

    let src = Path::new("src/request.rs.in");
    let dst = Path::new(&out_dir).join("request.rs");
    serde_codegen::expand(&src, &dst).unwrap();

    let src = Path::new("src/response.rs.in");
    let dst = Path::new(&out_dir).join("response.rs");
    serde_codegen::expand(&src, &dst).unwrap();
}