feat: unwrap provider namespaces to flat exports + barrel (#22760)

This commit is contained in:
Kit Langton
2026-04-16 01:02:50 -04:00
committed by GitHub
parent c8af8f96ce
commit 6b20838981
21 changed files with 1448 additions and 1452 deletions

View File

@@ -1,4 +1,4 @@
import { ProviderAuth } from "@/provider/auth"
import { ProviderAuth } from "@/provider"
import { Effect, Layer } from "effect"
import { HttpApi, HttpApiBuilder, HttpApiEndpoint, HttpApiGroup, OpenApi } from "effect/unstable/httpapi"

View File

@@ -3,8 +3,8 @@ import { describeRoute, validator, resolver } from "hono-openapi"
import z from "zod"
import { Config } from "../../config"
import { Provider } from "../../provider"
import { ModelsDev } from "../../provider/models"
import { ProviderAuth } from "../../provider/auth"
import { ModelsDev } from "../../provider"
import { ProviderAuth } from "../../provider"
import { ProviderID } from "../../provider/schema"
import { AppRuntime } from "../../effect/app-runtime"
import { mapValues } from "remeda"