Rename osbuild2 package to osbuild

This commit is contained in:
Achilleas Koutsou 2022-07-12 12:48:43 +02:00
parent 01d87b4e60
commit 9d4a351ca6
218 changed files with 474 additions and 475 deletions

View file

@ -0,0 +1,10 @@
package osbuild
func NewBtrfsMount(name, source, target string) *Mount {
return &Mount{
Type: "org.osbuild.btrfs",
Name: name,
Source: source,
Target: target,
}
}