mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-21 16:38:23 +01:00
13 lines
246 B
Go
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
|