using Nancy; using Nancy.Bootstrapper; using System.Collections.Generic; namespace SSWMS.Server { public class WebNancyBootstrapper : DefaultNancyBootstrapper { protected override IEnumerable Modules { get { return new ModuleRegistration[] { new ModuleRegistration(typeof(WebNancyModule)) }; } } } }