chore: add export

This commit is contained in:
Ben Allfree 2023-11-03 05:23:11 -07:00
parent 803441fb05
commit e1a45ddfc2
2 changed files with 1 additions and 4 deletions

View File

@ -33,8 +33,5 @@ export const clientService = mkSingleton(async (cfg: ClientServiceConfig) => {
return {
client,
shutdown() {
dbg(`clientService shutdown`)
},
}
})

View File

@ -2,7 +2,7 @@ import { MOTHERSHIP_NAME, MOTHERSHIP_SEMVER } from '$constants'
import { PocketbaseService } from '$services'
import { LoggerService } from '$shared'
const migrateMothership = async () => {
export const migrateMothership = async () => {
const logger = LoggerService().create(`migrateMothership`)
const { dbg, error, info, warn } = logger