mirror of
https://github.com/Start9Labs/registry.git
synced 2026-03-26 02:11:53 +00:00
13 lines
402 B
Haskell
13 lines
402 B
Haskell
{-# LANGUAGE DataKinds #-}
|
|
{-# LANGUAGE RecordWildCards #-}
|
|
|
|
module Handler.Package.V0.Index where
|
|
|
|
import Foundation (Handler)
|
|
import Handler.Package.Api (PackageListRes)
|
|
import Handler.Package.V1.Index qualified
|
|
|
|
|
|
-- implementation is the same but we will encode different payloads on the way out
|
|
getPackageIndexR :: Handler PackageListRes
|
|
getPackageIndexR = Handler.Package.V1.Index.getPackageIndexR |