mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 20:28:15 +03:00
f0bd7d2528
* Replace pkger with go:embed for bundling the admin. Closes #844 * Remove references to pkged.go * Point tests to use an updated version of Go * Add comment to new exported function * Cleanup * Add a dummy pkged.go to alert people to stop using it. * Add simple browser test to make sure the admin is available and renders * Don't panic
9 lines
241 B
Go
9 lines
241 B
Go
package main
|
|
|
|
import (
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
func init() {
|
|
log.Warnln("Explicitly building with pkged.go is no longer required and the file will be removed in the future. See https://github.com/owncast/owncast/pull/1464.")
|
|
}
|