/VkLampModule

Vkontake Module for the Lamp (https://github.com/Revxrsal/Lamp)

Primary LanguageJava

VkLampModule

Vkontake Module for the Lamp (https://github.com/Revxrsal/Lamp)

This module provides basic function, except MessageEvent listening that need to be provided by yourself

Get all VkHandler instances:

  List<VkHandler> handlers = VkHandler.getInstances();

Getting Started

Maven:

pom.xml
  <repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
  </repositories>

  <dependencies>
    <dependency>
        <groupId>com.github.Revxrsal.Lamp</groupId>
        <artifactId>common</artifactId>
        <version>[lamp-version]</version>
    </dependency>
    <dependency>
        <groupId>com.github.U61vashka</groupId>
        <artifactId>VkLampModule</artifactId>
        <version>[version]</version>
    </dependency>
  </dependencies>

Gradle:

build.gradle
  repositories {
    maven { url = 'https://jitpack.io' }
  }

  dependencies {
    implementation 'com.github.Revxrsal.Lamp:common:[lamp-version]'
    implementation 'com.github.U61vashka:VkLampModule:[verison]'
  }