Remove relay package, move everything into net

This commit is contained in:
Jon Staab
2025-10-20 13:09:53 -07:00
parent 88650fb166
commit 0be540c0d2
42 changed files with 128 additions and 528 deletions
+1 -3
View File
@@ -1,13 +1,11 @@
import {throttle} from "@welshman/lib"
import {Repository, LocalRelay, Tracker} from "@welshman/relay"
import {Repository, Tracker} from "@welshman/net"
import {custom} from "@welshman/store"
export const tracker = new Tracker()
export const repository = Repository.get()
export const relay = new LocalRelay(repository)
// Adapt objects to stores
export const makeRepositoryStore = ({throttle: t = 300}: {throttle?: number} = {}) =>