courses 0.9.4

A publishing system for interactive content
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! This is the module docs

extern crate core;

mod generators;
pub mod pipeline;
pub mod project;

pub mod built_info {
    // The file has been placed there by the build script.
    include!(concat!(env!("OUT_DIR"), "/built.rs"));
}