added DeleteReference

This commit is contained in:
Brian Long 2021-01-11 10:22:56 -05:00
parent cc54463ac1
commit f5abc63adf

View File

@ -0,0 +1,14 @@
package com.inteligr8.github.model;
public class DeleteReference {
private DeleteReference() {
}
public static String constructRequestPath(String repoName, String ref) {
return "/repos/" + repoName + "/" + httpPath + "/" + ref;
}
public static String httpPath = "git/refs";
}