1
2
3
4
5
6
7
8
9
10
11
12
| package org.example.server;
|
| import com.fasterxml.jackson.core.JsonProcessingException;
|
| /**
| * @program: demo
| * @description:
| * @create: 2024-07-16 15:23
| **/
| public interface CurrencySerivce {
| void start() throws JsonProcessingException;
| }
|
|