mirror of
https://github.com/mudler/LocalAI.git
synced 2025-05-20 10:35:01 +00:00

Refactor: channel based llm flow and services split --------- Signed-off-by: Dave Lee <dave@gray101.com>
6 lines
80 B
Go
6 lines
80 B
Go
package concurrency
|
|
|
|
type ErrorOr[T any] struct {
|
|
Value T
|
|
Error error
|
|
}
|