mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender.git
synced 2025-08-02 17:59:14 +02:00
11 lines
180 B
Go
11 lines
180 B
Go
package events
|
|
|
|
import (
|
|
"github.com/pocketbase/pocketbase"
|
|
"htwkalender/service/db"
|
|
)
|
|
|
|
func GetAllCourses(app *pocketbase.PocketBase) []string {
|
|
return db.GetAllCourses(app)
|
|
}
|