go-javamanifest

module
v0.1.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 24, 2021 License: MIT

README

go-javamanifest

go-javamanifest is a Go library for reading Java manifest files.

Usage

package main

import (
	"os"

	"git.sr.ht/~jmansfield/go-javamanifest/javamanifest"
)

func main() {
	f, err := os.Open("MANIFEST.MF")
	if err != nil {
		panic(err)
	}
	defer f.Close()

	manifest := javamanifest.NewManifest()
	if err := manifest.Read(f); err != nil {
		panic(err)
	}
}

License

This library is made available under the MIT license, found in the LICENSE.txt file.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL