mirror of
https://github.com/mjl-/mox.git
synced 2024-12-26 16:33:47 +03:00
27 lines
406 B
Go
27 lines
406 B
Go
|
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")
|
||
|
}
|