LSF/noten.go

11 lines
196 B
Go
Raw Normal View History

2019-10-05 20:32:39 +02:00
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")
}