Initial commit

This commit is contained in:
Marcel Transier
2019-10-05 20:32:39 +02:00
commit b7bea8cf09
7 changed files with 261 additions and 0 deletions

10
noten.go Normal file
View File

@@ -0,0 +1,10 @@
package lsf
import (
"github.com/pkg/errors"
//"github.com/PuerkitoBio/goquery"
)
func (s *Session) Noten() (map[Modul]float32, error) {
return nil, errors.New("noten not implemented yet")
}