mirror of
https://git.hmsn.ink/kospo/helptalk/api.git
synced 2026-03-20 20:13:45 +09:00
14 lines
325 B
Java
14 lines
325 B
Java
package com.kospo.talk.config.utils;
|
|
|
|
import org.springframework.context.annotation.Bean;
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
import java.util.HashMap;
|
|
import java.util.Map;
|
|
|
|
@Configuration
|
|
public class UploadObject {
|
|
public static Map<String, MultipleUpload> uploadStates = new HashMap<>();
|
|
|
|
}
|