feat: Global/GetMap, Global/GetCachedMap 추가

-  지도를 가져오는 코드
- GetCahcedMap에서는 600초 단위 캐싱
  - history 필드에 최근 10건 표시
This commit is contained in:
2022-04-21 01:24:07 +09:00
parent 1be6b7a509
commit 058a6e63f2
4 changed files with 144 additions and 3 deletions
+2 -1
View File
@@ -244,12 +244,13 @@ export type MapResult = {
shownByGeneralList: number[],
myCity?: number,
myNation?: number,
}
export type CachedMapResult = MapResult & {
theme?: string,
history?: string[],
}
export type SimpleNationObj = {
capital: number,
cities: string[],