Initial Commit

This commit is contained in:
janic 2022-01-11 20:05:12 +01:00
parent ec187663ce
commit 46566e1b3a
2 changed files with 10 additions and 1 deletions

View File

@ -58,7 +58,7 @@ APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Copyright 2022 Janic Voser
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

9
app/webserver.go Normal file
View File

@ -0,0 +1,9 @@
package webserver
import (
"net/http"
)
func main() {
http.HandleFunc()
}