Skip to content
Snippets Groups Projects
Select Git revision
  • 8ea236f05ab158564d47038b0de7b604227f3c40
  • dev default protected
  • master protected
3 results

getCardImage.ts

Blame
  • main.go 415 B
    package main
    
    import (
    	"git.sch.bme.hu/insert-epic-projlab-team-name-here/tooling/plab/helpers"
    	"git.sch.bme.hu/insert-epic-projlab-team-name-here/tooling/plab/tests"
    	"os"
    )
    
    func main() {
    	mainCmds := helpers.CmdFrom(os.Args[0], "go projlab tool", Timetable, Javadoc, Classdiag, Check, Filelist, tests.TestsToLatex)
    	if len(os.Args) < 2 {
    		os.Args = append(os.Args, "help")
    	}
    	mainCmds.Command(os.Args[1:])
    }