2022-07-11 17:57:33 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"srs.epita.fr/fic-server/admin/sync"
|
|
|
|
)
|
|
|
|
|
|
|
|
func RegisterChecksHooks(h *sync.CheckHooks) {
|
|
|
|
h.RegisterFlagKeyHook(EPITACheckKeyFlag)
|
2022-07-12 08:17:38 +00:00
|
|
|
h.RegisterFlagKeyWithChoicesHook(EPITACheckKeyFlagWithChoices)
|
2022-07-11 17:57:33 +00:00
|
|
|
h.RegisterFileHook(EPITACheckFile)
|
|
|
|
}
|