Add indentation

This commit is contained in:
Paulo Gustavo Veiga 2022-01-31 19:25:33 -08:00
parent 63a8e76e8f
commit ab4eddf1c2

View File

@ -17,6 +17,7 @@ class CacheDecoratorClient implements Client {
constructor(client: Client) { constructor(client: Client) {
this.client = client; this.client = client;
} }
fetchMindmap(id: number): Mindmap { fetchMindmap(id: number): Mindmap {
return this.client.fetchMindmap(id); return this.client.fetchMindmap(id);
} }