Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 441 Bytes

README.md

File metadata and controls

13 lines (11 loc) · 441 Bytes

Alexa.NET.SkillFlow.Interpreter

A small library interpreting SkillFlow text into a strongly typed model

The model that it creates can be found at Alexa.NET.SkillFlow

How to create a model from a story file

var interpreter = new SkillFlowInterpreter();
Story story = null;
using (var stream = File.OpenRead("story.abc"))
{
    story = await interpreter.Interpret(stream);
}