NotifyService.java 162 B

1234567
  1. package com.moekr.moocoder.logic.service;
  2. public interface NotifyService {
  3. void webHook(int id, String commitHash);
  4. void callback(int id, int buildNumber);
  5. }