waveterm/db/db.go
2024-05-21 21:15:11 -07:00

13 lines
246 B
Go

// Copyright 2023, Command Line Inc.
// SPDX-License-Identifier: Apache-2.0
package db
import "embed"
//go:embed migrations-blockstore/*.sql
var BlockstoreMigrationFS embed.FS
//go:embed migrations-wstore/*.sql
var WStoreMigrationFS embed.FS