mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-01-03 18:47:56 +01:00
13 lines
287 B
Go
13 lines
287 B
Go
// Copyright 2023, Command Line Inc.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
// provides the io/fs for DB migrations
|
|
package db
|
|
|
|
import "embed"
|
|
|
|
// since embeds must be relative to the package directory, this source file is required
|
|
|
|
//go:embed migrations/*.sql
|
|
var MigrationFS embed.FS
|