Serviceのベースを作成

This commit is contained in:
rca 2024-07-17 09:11:57 +09:00
parent a7900de8cd
commit 99ee452265

View File

@ -0,0 +1,9 @@
import api from '../api';
class _ServiceBase {
setToken(token: string): void {
api.setToken(token);
}
}
export default _ServiceBase;