mirror of
https://github.com/antebudimir/tempus.git
synced 2026-01-03 02:41:40 +00:00
29 lines
680 B
Java
29 lines
680 B
Java
package com.cappielloantonio.tempo.github;
|
|
|
|
import com.cappielloantonio.tempo.github.api.release.ReleaseClient;
|
|
|
|
public class Github {
|
|
private static final String OWNER = "CappielloAntonio";
|
|
private static final String REPO = "Tempo";
|
|
private ReleaseClient releaseClient;
|
|
|
|
public ReleaseClient getReleaseClient() {
|
|
if (releaseClient == null) {
|
|
releaseClient = new ReleaseClient(this);
|
|
}
|
|
|
|
return releaseClient;
|
|
}
|
|
|
|
public String getUrl() {
|
|
return "https://api.github.com/";
|
|
}
|
|
|
|
public static String getOwner() {
|
|
return OWNER;
|
|
}
|
|
|
|
public static String getRepo() {
|
|
return REPO;
|
|
}
|
|
}
|