8 lines
122 B
Go
8 lines
122 B
Go
package scheduler
|
|
|
|
import "encoding/json"
|
|
|
|
func jsonUnmarshal(b []byte, dst any) error {
|
|
return json.Unmarshal(b, dst)
|
|
}
|