Skip to content

Commit 3c50463

Browse files
committed
license
1 parent 3aa3aa0 commit 3c50463

File tree

4 files changed

+29
-0
lines changed

4 files changed

+29
-0
lines changed

cmd/gss/main.go

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
// =================================================================
2+
//
3+
// Copyright (C) 2018 Spatial Current, Inc. - All Rights Reserved
4+
// Released as open source under the MIT License. See LICENSE file.
5+
//
6+
// =================================================================
7+
18
package main
29

310
import (

gss/Convert.go

+8
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
1+
// =================================================================
2+
//
3+
// Copyright (C) 2018 Spatial Current, Inc. - All Rights Reserved
4+
// Released as open source under the MIT License. See LICENSE file.
5+
//
6+
// =================================================================
7+
18
package gss
29

310
import (
411
"github.com/pkg/errors"
512
)
613

14+
// Convert converts an input_string from the input_format to the output_format and returns an error, if any.
715
func Convert(input_string string, input_format string, output_format string) (string, error) {
816
if input_format == "json" || input_format == "hcl" || input_format == "hcl2" || input_format == "toml" || input_format == "yaml" {
917
if output_format == "json" || input_format == "hcl" || input_format == "hcl2" || output_format == "toml" || output_format == "yaml" {

gss/Deserialize.go

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
// =================================================================
2+
//
3+
// Copyright (C) 2018 Spatial Current, Inc. - All Rights Reserved
4+
// Released as open source under the MIT License. See LICENSE file.
5+
//
6+
// =================================================================
7+
18
package gss
29

310
import (

gss/Serialize.go

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
// =================================================================
2+
//
3+
// Copyright (C) 2018 Spatial Current, Inc. - All Rights Reserved
4+
// Released as open source under the MIT License. See LICENSE file.
5+
//
6+
// =================================================================
7+
18
package gss
29

310
import (

0 commit comments

Comments
 (0)