mirror of
https://github.com/signalwire/freeswitch
synced 2026-08-07 14:32:14 -04:00
13 lines
198 B
Text
13 lines
198 B
Text
#JSGF V1.0;
|
|
/**
|
|
* JSGF Grammar for Directory
|
|
*/
|
|
|
|
grammar directory;
|
|
|
|
<anthony> = [ anthony ];
|
|
<michael> = [ michael ];
|
|
<brian> = [ brian ];
|
|
|
|
public <directory> = <anthony> <michael> <brian>;
|
|
|