* FAQ rework, replacing outdated info, better interaction faq * Update docs/faq/basics/getting-started.md Co-authored-by: Jared L <48422312+lhjt@users.noreply.github.com> * Update docs/faq/basics/getting-started.md Co-authored-by: Jared L <48422312+lhjt@users.noreply.github.com> * Update docs/faq/int_framework/general.md Co-authored-by: Jared L <48422312+lhjt@users.noreply.github.com> * fix TOC reference Co-authored-by: Jared L <48422312+lhjt@users.noreply.github.com> Co-authored-by: Quin Lynch <lynchquin@gmail.com>
10 lines
205 B
C#
10 lines
205 B
C#
public class Setup
|
|
{
|
|
private readonly CommandService _command;
|
|
|
|
public Setup()
|
|
{
|
|
var config = new CommandServiceConfig{ DefaultRunMode = RunMode.Async };
|
|
_command = new CommandService(config);
|
|
}
|
|
} |