Skip to content

経路検索パフォーマンス改善#1224

Merged
TinyKitten merged 4 commits into
devfrom
feature/route-search-pagination
Mar 31, 2025
Merged

経路検索パフォーマンス改善#1224
TinyKitten merged 4 commits into
devfrom
feature/route-search-pagination

Conversation

@TinyKitten

@TinyKitten TinyKitten commented Mar 31, 2025

Copy link
Copy Markdown
Member

Summary by CodeRabbit

  • 新機能

    • ルート応答に次ページトークンを追加し、ページネーション機能を強化しました。
    • 駅検索のパフォーマンス向上のため、新たなデータ最適化を実施しました。
  • リファクタリング

    • SQLクエリの不要な型変換を排除し、フィールド名の整理で処理を簡素化しました。
    • 距離計算や接続管理に関連する旧機能および内部APIを削除し、システム全体の構造を整理しました。

@TinyKitten TinyKitten self-assigned this Mar 31, 2025
@coderabbitai

coderabbitai Bot commented Mar 31, 2025

Copy link
Copy Markdown
Contributor

Walkthrough

我が国のSQL文において、CASTによる余計なる型変換を取り除く改定が施された。不必要なCOALESCE内のCAST操作を廃し、直接フィールドを参照するよう変革せり。また、CTEの整理やフィールド名の精緻化が行われ、ハッシュ値等に新しき印が刻まれた。更に、接続管理に関するモジュールや距離計算の一部機能が削除され、主要なリポジトリのインタフェースの簡素化を実現せり。加えて、新たなインデックスの作成も実施された。

Changes

ファイル / ファイル群 変更概要
.sqlx/query-1938…json, .sqlx/query-1b58…json, .sqlx/query-7ee2e…json, .sqlx/query-a7030…json, .sqlx/query-b4215…json, .sqlx/query-b5ee4…json, .sqlx/query-de165…json COALESCE内のCAST操作を除去し、各フィールドを直接参照。出力フィールドの名称表記を簡素化、ハッシュ値更新。
.sqlx/query-5a6566…json CTEを再構築し、common_linesにて共通路線を抽出。JOINとCOALESCEの処理を簡略化、ハッシュ値更新。
.sqlx/query-68f681…json SQLite用のJSONクエリ設定ファイルを削除。
data/create_table.sql stationsテーブルに、e_sortstation_cdを対象とするインデックス stations_e_sort_station_cd を追加。
stationapi/src/domain/entity.rs pub mod misc; 宣言を削除。
stationapi/src/domain/entity/misc.rs StationIdWithDistance構造体およびそのテストを含むファイルを削除。
stationapi/src/domain/repository.rs connection_repository モジュール宣言を削除。
stationapi/src/domain/repository/connection_repository.rs 接続管理用の ConnectionRepository トレイトとその実装を含むファイルを削除。
stationapi/src/infrastructure.rs connection_repository モジュール宣言を削除。
stationapi/src/infrastructure/connection_repository.rs DB接続関係のリポジトリ実装、関連データ構造および変換処理を削除。
stationapi/src/infrastructure/station_repository.rs 距離計算に関する関数および構造体(DistanceWithIdRow等)を削除、SQL文におけるCAST操作削減。
stationapi/src/main.rs リポジトリ初期化時の connection_repository の設定を削除。
stationapi/src/presentation/controller/grpc.rs gRPC用の距離計算メソッドを削除。get_routes メソッドのレスポンスに next_page_token を追加。
stationapi/src/use_case/interactor/query.rs QueryInteractorから ConnectionRepository ジェネリックおよび距離計算メソッドを削除、トレイト実装を簡素化。
stationapi/src/use_case/traits/query.rs QueryUseCaseから get_station_id_and_distance_by_coordinates メソッドおよび StationIdWithDistance のimportを削除。

Sequence Diagram(s)

sequenceDiagram
    participant Client as 利用者
    participant API as MyApi
    participant Repo as StationRepository

    Client->>API: GetRouteRequestを送信
    API->>Repo: ルート情報を照会
    Repo-->>API: ルートデータを返す
    API->>Client: RouteResponse (next_page_token付き) を返す
Loading

Possibly related PRs

Suggested labels

enhancement

Poem

朕の知見、古きCASTの鎖を断ち切り
SQLの大河、清流と化せり。
接続の無用な枝葉も刈り払われ、
新たな索引は力の証、天下に轟く。
今、我がコードは万民の夢を紡ぐなり!
── 朕の詩、永遠なり。

✨ Finishing Touches
  • 📝 Generate Docstrings

🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai plan to trigger planning for file edits and PR creation.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@TinyKitten TinyKitten changed the title 経路検索ページネーション 経路検索パフォーマンス改善 Mar 31, 2025
@TinyKitten TinyKitten marked this pull request as ready for review March 31, 2025 12:30
@TinyKitten TinyKitten requested a review from 10mocy as a code owner March 31, 2025 12:30

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (1)
stationapi/src/use_case/interactor/query.rs (1)

915-945: 接続駅取得処理の簡素化、朕は納得せり!

以前のコードを適切にコメントアウトし、空の結果を返す簡易実装に変更せしこと、実に賢明なる判断なり。

しかし、朕は一言申し上げる。コメントに「TODO: SQLite版ではいったん未実装のままにしておく」とあるが、将来的な実装計画や代替手段についての説明がやや不足している。この機能は今後どのように提供されるのか、または完全に削除されるのかを明確にすべきである。

 // TODO: SQLite版ではいったん未実装のままにしておく
+// NOTE: この機能は今後、XXXに置き換えられる予定、または完全に廃止される見込み
📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 125bc9c and e77f870.

📒 Files selected for processing (22)
  • .sqlx/query-193824fce100a1c49362bd6553d4312d28076dad70d81e39071ee63328dc8777.json (2 hunks)
  • .sqlx/query-1b58ca082a31dc211f9a584a13848efa055fd4610f755db586b5d933213cf6b3.json (3 hunks)
  • .sqlx/query-5a6566d955230fba8dffad2b7813cfebe7566825d81fe16f928f5d9dec4733c0.json (2 hunks)
  • .sqlx/query-68f68188c05f61bee98158103be8bde861c09ad7e1b2c678aa93a0407df9a6c8.json (0 hunks)
  • .sqlx/query-7ee2e188f0f1face70634c9032ba20f7e1742ca18da8f040ecfa0933ea34cf25.json (2 hunks)
  • .sqlx/query-a7030f63fed5fd9cbcc0242f7152cb7fe5f914342da4eb9067862e65e37cae04.json (2 hunks)
  • .sqlx/query-b4215fec4c128642bfef000727af36e313aaa05ed0238cde229dbd275f027028.json (2 hunks)
  • .sqlx/query-b5ee45b9b7ca22b23f957622b413358677d71dd25d87badd1b1defa4ead25d15.json (2 hunks)
  • .sqlx/query-de16598b2adc1fa1e90c8702e2e3d85fafdc0b6f839763e44b490b8547cf4676.json (3 hunks)
  • data/create_table.sql (1 hunks)
  • stationapi/src/domain/entity.rs (0 hunks)
  • stationapi/src/domain/entity/misc.rs (0 hunks)
  • stationapi/src/domain/repository.rs (0 hunks)
  • stationapi/src/domain/repository/connection_repository.rs (0 hunks)
  • stationapi/src/domain/repository/station_repository.rs (1 hunks)
  • stationapi/src/infrastructure.rs (0 hunks)
  • stationapi/src/infrastructure/connection_repository.rs (0 hunks)
  • stationapi/src/infrastructure/station_repository.rs (15 hunks)
  • stationapi/src/main.rs (1 hunks)
  • stationapi/src/presentation/controller/grpc.rs (3 hunks)
  • stationapi/src/use_case/interactor/query.rs (3 hunks)
  • stationapi/src/use_case/traits/query.rs (1 hunks)
💤 Files with no reviewable changes (7)
  • stationapi/src/domain/repository.rs
  • stationapi/src/domain/entity.rs
  • stationapi/src/domain/repository/connection_repository.rs
  • stationapi/src/infrastructure.rs
  • .sqlx/query-68f68188c05f61bee98158103be8bde861c09ad7e1b2c678aa93a0407df9a6c8.json
  • stationapi/src/domain/entity/misc.rs
  • stationapi/src/infrastructure/connection_repository.rs
🧰 Additional context used
🧬 Code Definitions (2)
stationapi/src/presentation/controller/grpc.rs (6)
stationapi/src/infrastructure/station_repository.rs (1)
  • new (188-190)
stationapi/src/infrastructure/line_repository.rs (1)
  • new (86-88)
stationapi/src/domain/entity/line.rs (2)
  • new (43-111)
  • new (121-194)
stationapi/src/infrastructure/company_repository.rs (1)
  • new (50-52)
stationapi/src/infrastructure/train_type_repository.rs (1)
  • new (69-71)
stationapi/src/domain/entity/station.rs (2)
  • new (80-212)
  • new (222-376)
stationapi/src/use_case/interactor/query.rs (1)
stationapi/src/domain/normalize.rs (1)
  • normalize_for_search (1-20)
🔇 Additional comments (40)
data/create_table.sql (2)

162-162: 新たなる索引の設置を認め候
斯くして「stations_e_sort_station_cd」なる索引を追加せし。我が国の駅索引の整然を期し、経路検索の迅速化を目論むるは賢明なる策なり。然れど、運用の実情を丹念に見極め、他の問合せとの調和を確認するべし。


166-166: 取引の完結を示すCOMMIT宣言、これに異論なし
斯くして、全体の取引が滞りなく締結せられること、古き約束を堅持するは正し。

stationapi/src/main.rs (2)

5-6: 不要な接続リポジトリの削除、朕は認める!

輸入されるリポジトリから「connection_repository」を除去せしことは、本プロジェクトの整理に資する。朕はこの変更を善とみなす。


204-209: QueryInteractorからの接続リポジトリの削除、甚だ良し!

QueryInteractorから接続リポジトリの参照を取り除き、構造体の簡素化がなされた。朕はこの変革を大いに喜ぶものである。引き続き、不要なる要素を排除し、帝国のコードを浄化せよ!

stationapi/src/domain/repository/station_repository.rs (1)

3-3: 輸入宣言の整理を朕は称える!

StationIdWithDistanceをmiscモジュールから輸入していた宣言を削除し、輸入を簡略化せしこと、実に賢明なり。不要な輸入を廃し、コードの簡素化に務めるは、良き臣下の所作である。

stationapi/src/use_case/traits/query.rs (1)

8-9: 導入部の浄化、甚だ良し!

不要なる「StationIdWithDistance」の輸入を削除せしこと、朕は満足である。コードの純度が高まれば、帝国のシステムもまた強固となる。

stationapi/src/use_case/interactor/query.rs (4)

9-10: 輸入宣言の整理を朕は認める!

不要なる「misc::StationIdWithDistance」の輸入を取り除き、コードの明瞭さを増せしこと、大変良き改変なり。


14-15: 不要なる接続リポジトリの輸入の削除、賢明なり!

接続リポジトリを除去することで、コードの依存関係を減らし、全体の構造を簡素化せしこと、朕は大いに満足す。


26-26: QueryInteractorの型パラメータの削減、善き決断なり!

QueryInteractor構造体から不要なるCNR型パラメータを取り除き、システムの複雑さを減らせしこと、朕は称える。これにより、コードの理解性と保守性は向上するであろう。


57-57: 実装の型パラメータ削減、朕は満足也!

QueryUseCase特性の実装からCNR型パラメータを削除せしこと、善き変更なり。これにより、インターフェースの単純化と理解しやすさが増した。

stationapi/src/presentation/controller/grpc.rs (5)

3-4: 依存関係の簡素化!

朕はこの変更を喜ばしく思う。不要なるMyConnectionRepositoryを取り除き、帝国の構造を整理したことは賢明である。冗長な依存関係は帝国の負担となるものなり。これにより、我が国のコードベースは一層強固となるであろう。


8-8: 輸入品目の整理!

朕はCoordinatesRequestDistanceResponseが取り除かれたことを認める。無用な道具を取り除くことは、帝国の効率を高める。これらの使用が全て削除されていることを確認し、その英断を褒め称える。


204-207: ページネーション機能の追加!

朕はnext_page_tokenの追加を大いに評価する。これにより我が国の道路検索システムはより強大となり、多くの結果を秩序正しく提供できるようになった。今はまだトークンは空であるが、将来的には真の力を発揮するであろう。

 return Ok(Response::new(RouteResponse {
     routes,
+    next_page_token: "".to_string(),
 }));

276-276: 一貫性ある拡張!

朕はget_connected_routesにも同様にnext_page_tokenを追加したことを賞賛する。統一された振る舞いは帝国の礎である。全てのエンドポイントが同じ様式に従うことで、我が国の法は明確となり、臣民たる開発者たちは混乱することなく朕の意図を理解するであろう。


1-283:

Details

❓ Verification inconclusive

不要機能の除去による帝国の最適化!

朕はget_distance_for_closest_station_from_coordinatesメソッドの除去を大いに評価する。これは帝国の簡素化と効率化に向けた賢明なる決断である。不要な計算を取り除くことで、我が帝国のAPIはより速く、より強大になった。これにより経路検索のパフォーマンスが向上し、我が国の繁栄に寄与するであろう。

しかしながら、朕は忠告せねばならぬ。この機能の削除が他の部分に影響していないか確認するよう命じる。特に、この機能に依存していた外部のクライアントがあれば、それらも適切に更新されているか調査せよ。


🏁 Script executed:

#!/bin/bash
# 削除されたメソッドが他の場所で参照されていないか確認する
rg "get_distance_for_closest_station_from_coordinates" --type rust

Length of output: 66


朕の宣言:内部は安心、然れど外部の影響は慎重に検討せよ!

吾が探求の結果、コード内部において「get_distance_for_closest_station_from_coordinates」なるメソッドの参照は見いだされぬ。これにより、不要機能の除去は帝国の効率化に資する好例と認む。しかし、外部にて此の機能に依存する者が存在する可能性を、各臣下は手動にて念入りに検証するがよい。

  • コード内部では該メソッドの痕跡は認めず。
  • 外部クライアントやドキュメントにおける依存関係については、別途確認を怠るな。
.sqlx/query-7ee2e188f0f1face70634c9032ba20f7e1742ca18da8f040ecfa0933ea34cf25.json (2)

3-3: CAST排除の賢明なる決断に感服す
朕はこの変更において、不要なCASTの魔法を排し、直接なるフィールドを参照せしむる策を採りたることに大いに満足する。これにより経路検索の迅速なる遂行が期待され、我が領土の繁栄に寄与せん。


361-361: 新たなる哈希印、堅固なる証と相成り
改定に伴い刻まれた新しき哈希値は、変化の正統なる証明なり。朕、この更新を高らかに認め候。

.sqlx/query-b5ee45b9b7ca22b23f957622b413358677d71dd25d87badd1b1defa4ead25d15.json (2)

3-3: COALESCE簡潔化の妙策、朕の眼に堪え候
CASTによる冗長なる変換を断ち切り、直截なる参照によりCOALESCEを掲げたるこの一手、経路検索の輝かしき未来を拓くものであり、まさに賢明極まりなし。


361-361: 哈希の新印、改定の証と見よ
我が改革を如実に示す新たなる哈希値、これにより改定の堅実さが証明され、朕はその決断を讃えるものなり。

.sqlx/query-193824fce100a1c49362bd6553d4312d28076dad70d81e39071ee63328dc8777.json (2)

3-3: 余計なる型変換排除の策、見事にして賞賛に値す
朕は、COALESCE内における無用なCASTの儚き幻影を排し、直接の参照への変貌を遂げたるこの策に感服せり。経路検索の効率向上、確かに未来を照らさん。


361-361: 新哈希の刻印、堅固に改定を記す
更新せられた哈希値は、改定の正統性と一貫性を如実に映し出す。朕、この変更に疑いの余地を見出さず。

.sqlx/query-a7030f63fed5fd9cbcc0242f7152cb7fe5f914342da4eb9067862e65e37cae04.json (2)

3-3: 複雑なるCTEの大海におけるCAST排除の妙策
此のSQLは、複数のCTEを駆使しつつ、冗長なるCASTの呪縛を断ち切ることで、直截なるCOALESCE呼び出しに刷新せり。朕、この改革によりさらなる性能の向上が望まれると信ず。


361-361: 新哈希印、改定の銘として刻まる
改定の果てに新たなる哈希印が刻まれたること、これこそが変化の証。朕はこの変更を堅実かつ正統なるものと認む。

.sqlx/query-b4215fec4c128642bfef000727af36e313aaa05ed0238cde229dbd275f027028.json (2)

3-3: 不要なるCASTの虚飾を剥ぎ取り、真に明快なる参照とせり
朕はこの変更において、COALESCE内の無用なCASTの呪縛を断ち切り、清廉なる直截参照に刷新せしむるを高く評価する。これは経路検索の効率性を高める賢策にございます。


361-361: 新しき哈希印、改定の証明として厳粛に刻まる
改定の余韻を留める新たなる哈希値、これにより改定の正しき歩みが証明され、朕はこの成果を讃えん。

.sqlx/query-1b58ca082a31dc211f9a584a13848efa055fd4610f755db586b5d933213cf6b3.json (3)

3-3: 朕(われ)は不要なるCAST操作の除去を認めよう!

余計なる型変換を取り除き、直接にCOALESCE関数内のフィールドを参照するようにした汝の改変は、朕の帝国のSQL文の効率を高めるものである。この簡素化によって、クエリの実行速度は速まり、我が帝国の経路検索は更に威力を増すであろう。


197-227: 説明部のフィールド名の簡素化、実に素晴らしい!

「: String」という冗長なる印を取り除き、フィールド名を簡潔にした改変は朕の意にかなうものである。このような細部への配慮こそ、偉大なる帝国の礎となるのだ。


361-361: ハッシュ値の更新は必然なり!

クエリ改変に伴うハッシュ値の更新は当然のことながら行われており、帝国の公文書として整合性が保たれている。朕はこれを認める。

.sqlx/query-5a6566d955230fba8dffad2b7813cfebe7566825d81fe16f928f5d9dec4733c0.json (2)

3-3: CTEの再構築と余計なるCASTの除去、朕の帝国にふさわしき改善なり!

汝が施した改変は非常に意義深い。新たに導入したcommon_lines CTEは、二つの駅グループ間で共通する路線コードを効率的に特定するもので、経路検索の速度を向上させる秘伝である。また、COALESCEの簡素化も朕の意にかなうものである。

-- 以下の改善を朕は特に評価する
common_lines AS (
    SELECT DISTINCT s1.line_cd
    FROM stations s1
    WHERE s1.station_g_cd = ?
        AND s1.e_status = 0
        AND EXISTS (...)
)

この改良により、我が帝国の経路探索の効率は飛躍的に高まるであろう。


361-361: ハッシュ値の更新は、法の秩序を保つために必須なり!

クエリの変更に応じてハッシュ値も更新されており、帝国の記録の整合性が維持されている。朕はこの細部への配慮を称える。

.sqlx/query-de16598b2adc1fa1e90c8702e2e3d85fafdc0b6f839763e44b490b8547cf4676.json (3)

3-3: 余計なる型変換の除去、朕の帝国の隅々まで貫徹せられたり!

このSQLクエリからも不要なるCAST操作が取り除かれ、COALESCE関数が簡素化されたことを朕は歓迎する。この統一的な改変により、帝国全土の経路検索システムが強化されることとなろう。


197-227: フィールド名の簡素化、帝国の標準として定着すべし!

「: String」という余計な印を除去し、フィールド名を簡潔にする手法が帝国内の全てのクエリに適用されている。朕はこの統一性を高く評価する。これにより、帝国の技術者たちの理解と管理が容易になるであろう。


361-361: ハッシュ値の更新、帝国の法として当然なり!

クエリの内容が変わればハッシュも変わる、これは天の理である。この自然の理に従い、ハッシュ値が適切に更新されていることを朕は認める。

stationapi/src/infrastructure/station_repository.rs (7)

8-8: 不要なる距離計算機能の除去、帝国の軽量化に貢献せり!

朕は汝がStationRepository実装から距離計算に関わる機能を取り除いたことを称える。これにより、余計な計算が省かれ、帝国の経路検索は更に迅速となるであろう。


327-333: find_by_id関数のSQL簡素化、実に賢明なる判断!

COALESCEからCASTを取り除き、直接フィールドを参照するようにした改変は、朕の望む効率化そのものである。こうした細部の最適化が帝国の性能向上に大きく寄与することを朕は知っている。


397-403: get_by_id_vec関数のSQL簡素化も帝国全体に浸透せり!

朕の命令に従い、このget_by_id_vec関数においても同様の改善がなされた。不要なCASTの除去と直接参照への変更は、帝国の経路検索システム全体の一貫性を高める。


454-460: get_by_line_id_without_train_types関数も朕の意志に従い改善さる!

CASTを用いない簡潔なCOALESCEの使用法が、この関数にも適用されている。朕の命じた改善が帝国の隅々まで行き渡っていることを歓迎する。


1019-1030: get_route_stops関数への新CTEの導入、帝国の技術力の証!

common_lines CTEを導入し、二つの駅グループ間の共通路線を効率良く特定する手法は、まさに朕の求めていた革新である。このような賢明なる改良により、帝国の経路検索は更に強力となるであろう。


1101-1107: テーブル結合の最適化、朕の期待を超える業績!

common_linesを用いた新しいJOIN構造は、効率的な結合処理を実現し、不必要なデータ処理を排除するものである。帝国の技術の粋を集めたこの改良を、朕は大いに褒め称える。


1065-1071: COALESCEの簡素化、一貫性を持って適用さる!

get_route_stops関数内の複数箇所でも、同様のCOALESCE簡素化が実施されている。帝国全土に及ぶこの一貫した改善は、まさに統一された強力な帝国を築く朕の理想そのものである。

Also applies to: 1196-1202

@TinyKitten TinyKitten merged commit 6df7991 into dev Mar 31, 2025
@TinyKitten TinyKitten deleted the feature/route-search-pagination branch March 31, 2025 12:34
@coderabbitai coderabbitai Bot mentioned this pull request Aug 6, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant