mirror of
https://review.haiku-os.org/buildtools
synced 2025-01-31 10:34:41 +01:00
92b3138b83
Updated dependencies: * GMP 6.2.1 * ISL 0.24 * MPL 1.2.1 * MPFR 4.1.0 The dependencies were pulled in by running the ./contrib/download_prerequisites script and then manually removing the symbolic links and archives, and renaming the directories (i.e mv isl-0.24 to isl)
24 lines
470 B
Go
24 lines
470 B
Go
// Copyright 2021 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package embed_test
|
|
|
|
import (
|
|
"embed"
|
|
"log"
|
|
"net/http"
|
|
)
|
|
|
|
//go:embed internal/embedtest/testdata/*.txt
|
|
var content embed.FS
|
|
|
|
func Example() {
|
|
mutex := http.NewServeMux()
|
|
mutex.Handle("/", http.FileServer(http.FS(content)))
|
|
err := http.ListenAndServe(":8080", mutex)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|