mirror of
https://github.com/gitpitch/gitpitch.git
synced 2024-04-18 07:30:55 +08:00
61 lines
2.5 KiB
Java
61 lines
2.5 KiB
Java
/*
|
|
* MIT License
|
|
*
|
|
* Copyright (c) 2016 David Russell
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*/
|
|
|
|
import com.gitpitch.factory.MarkdownModelFactory;
|
|
import com.gitpitch.models.Markdown;
|
|
import com.gitpitch.models.MarkdownModel;
|
|
import com.gitpitch.services.*;
|
|
import com.gitpitch.policies.CacheTimeout;
|
|
import com.gitpitch.policies.Dependencies;
|
|
import com.gitpitch.executors.FrontEndThreads;
|
|
import com.gitpitch.executors.BackEndThreads;
|
|
import com.google.inject.AbstractModule;
|
|
import com.google.inject.assistedinject.FactoryModuleBuilder;
|
|
|
|
/*
|
|
* Guice DI injection dependencies for the GitPitch server.
|
|
*/
|
|
public class Module extends AbstractModule {
|
|
|
|
@Override
|
|
public void configure() {
|
|
bind(DiskService.class).asEagerSingleton();
|
|
bind(GitService.class).asEagerSingleton();
|
|
bind(PitchService.class).asEagerSingleton();
|
|
bind(PrintService.class).asEagerSingleton();
|
|
bind(OfflineService.class).asEagerSingleton();
|
|
bind(ShellService.class).asEagerSingleton();
|
|
bind(ImageService.class).asEagerSingleton();
|
|
bind(VideoService.class).asEagerSingleton();
|
|
bind(GISTService.class).asEagerSingleton();
|
|
bind(FrontEndThreads.class).asEagerSingleton();
|
|
bind(BackEndThreads.class).asEagerSingleton();
|
|
bind(Dependencies.class).asEagerSingleton();
|
|
bind(CacheTimeout.class).asEagerSingleton();
|
|
install(new FactoryModuleBuilder().implement(Markdown.class, MarkdownModel.class)
|
|
.build(MarkdownModelFactory.class));
|
|
}
|
|
|
|
}
|