2025-05-27 12:38:55 +01:00

10 lines
197 B
Java

package stirling.software.common.service;
public interface UserServiceInterface {
String getApiKeyForUser(String username);
String getCurrentUsername();
long getTotalUsersCount();
}