11 lines
196 B
Go
11 lines
196 B
Go
|
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")
|
||
|
}
|