This commit is contained in:
2026-05-12 20:23:30 +02:00
parent f1ec1c3a42
commit e9c0d947a6
14 changed files with 167 additions and 345 deletions

View File

@@ -0,0 +1,9 @@
# frozen_string_literal: true
class WikiService
def initialize(repo) = @repo = repo
def list(category) = @repo.list(category)
def content(page_id) = @repo.content(page_id)
def page_url(locale, path) = @repo.page_url(locale, path)
end