
io.github.kongweiguang.ok.core.Const Maven / Gradle / Ivy
package io.github.kongweiguang.ok.core;
/**
* http请求中涉及到的常量
*
* @author kongweiguang
*/
public interface Const {
String http = "http";
String https = "https";
String _http = "http://";
String _https = "https://";
String ws = "ws";
String wss = "wss";
String _ws = "ws://";
String _wss = "wss://";
String localhost = "127.0.0.1";
int port = 80;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy