applying license to the source files

This commit is contained in:
Suyono 2024-07-28 09:52:51 +10:00
parent a3e50949f4
commit dc40d54912
3 changed files with 48 additions and 0 deletions

View File

@ -1,5 +1,21 @@
package terminal_wrapper package terminal_wrapper
/*
Copyright 2023 Suyono <suyono3484@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
func (c Cursor) GoHome() { func (c Cursor) GoHome() {
c.terminal.EscapePrintf("H") c.terminal.EscapePrintf("H")
} }

View File

@ -1,5 +1,21 @@
package terminal_wrapper package terminal_wrapper
/*
Copyright 2023 Suyono <suyono3484@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import ( import (
"errors" "errors"
"fmt" "fmt"

View File

@ -1,5 +1,21 @@
package main package main
/*
Copyright 2023 Suyono <suyono3484@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import ( import (
tw "gitea.suyono.dev/suyono/terminal_wrapper" tw "gitea.suyono.dev/suyono/terminal_wrapper"
"os" "os"