add missing file from previous commit

This commit is contained in:
Mechiel Lukkien 2024-10-04 09:34:37 +02:00
parent 8f7fc3773b
commit 9a4fa8633f
No known key found for this signature in database

26
licenses.go Normal file
View file

@ -0,0 +1,26 @@
package main
import (
"embed"
"os"
"github.com/mjl-/mox/mox-"
)
//go:embed LICENSE.MIT LICENSE.MPLv2.0 licenses/*
var licensesFsys embed.FS
func init() {
mox.LicensesFsys = licensesFsys
}
func cmdLicenses(c *cmd) {
c.help = `Print licenses of mox source code and dependencies.`
args := c.Parse()
if len(args) != 0 {
c.Usage()
}
err := mox.LicensesWrite(os.Stdout)
xcheckf(err, "write")
}