api.go 84 B

123456789
  1. package api
  2. import (
  3. "log"
  4. )
  5. func ErrorHandler(err error) {
  6. log.Println(err)
  7. }