refactor: eliminate account/ barrel, route consumers to sibling files (#22995)

This commit is contained in:
Kit Langton
2026-04-16 21:55:50 -04:00
committed by GitHub
parent 8ba73bed23
commit c026e25088
10 changed files with 14 additions and 34 deletions

View File

@@ -1,8 +1,8 @@
import { cmd } from "./cmd"
import { Duration, Effect, Match, Option } from "effect"
import { UI } from "../ui"
import { AccountID, Account, OrgID, PollExpired, type PollResult } from "@/account"
import { type AccountError } from "@/account/schema"
import { Account } from "@/account/account"
import { AccountID, OrgID, PollExpired, type PollResult, type AccountError } from "@/account/schema"
import { AppRuntime } from "@/effect/app-runtime"
import * as Prompt from "../effect/prompt"
import open from "open"