Skip to content

Another implementation of a virtual file system based on assets embedded in your code.

License

Notifications You must be signed in to change notification settings

va-slyusarev/afs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Assets File System (AFS)

Another implementation of a virtual file system based on assets embedded in your code. The implementation uses zlib compression and base64 encoding.

Install

go get github.com/va-slyusarev/afs/...

Use case

  1. Add assets to the catalog;
  2. Run afs/afs utility by adjusting the appropriate parameters;
  3. Add generated class to your code and use.
package main

import (
	"log"
	"net/http"

	"github.com/va-slyusarev/afs"
	_ "your/path/which/was/generated" // init assets for afs
)

func main() {
	if fs, err := afs.GetAFS(); err == nil {
		log.Fatal(http.ListenAndServe(":8080", http.FileServer(fs)))
	}
}

See _example

About

Another implementation of a virtual file system based on assets embedded in your code.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published