Sasan Torabkheslat 5 rokov pred
commit
a8fde28fc9
10 zmenil súbory, kde vykonal 51 pridanie a 0 odobranie
  1. 2 0
      .gitignore
  2. 8 0
      .idea/.gitignore
  3. 9 0
      .idea/VOIP-BSS.iml
  4. 6 0
      .idea/misc.xml
  5. 8 0
      .idea/modules.xml
  6. 4 0
      Makefile
  7. BIN
      build/test
  8. BIN
      build/test2
  9. 7 0
      src/test.go
  10. 7 0
      src/test2.go

+ 2 - 0
.gitignore

@@ -0,0 +1,2 @@
+/build
+/build/*

+ 8 - 0
.idea/.gitignore

@@ -0,0 +1,8 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
+# Editor-based HTTP Client requests
+/httpRequests/

+ 9 - 0
.idea/VOIP-BSS.iml

@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<module type="WEB_MODULE" version="4">
+  <component name="Go" enabled="true" />
+  <component name="NewModuleRootManager">
+    <content url="file://$MODULE_DIR$" />
+    <orderEntry type="inheritedJdk" />
+    <orderEntry type="sourceFolder" forTests="false" />
+  </component>
+</module>

+ 6 - 0
.idea/misc.xml

@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="JavaScriptSettings">
+    <option name="languageLevel" value="ES6" />
+  </component>
+</project>

+ 8 - 0
.idea/modules.xml

@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project version="4">
+  <component name="ProjectModuleManager">
+    <modules>
+      <module fileurl="file://$PROJECT_DIR$/.idea/VOIP-BSS.iml" filepath="$PROJECT_DIR$/.idea/VOIP-BSS.iml" />
+    </modules>
+  </component>
+</project>

+ 4 - 0
Makefile

@@ -0,0 +1,4 @@
+all:
+	for item in src/*.go; do go build -o build/ $${item} ; done
+clean:
+	rm -f build/*

BIN
build/test


BIN
build/test2


+ 7 - 0
src/test.go

@@ -0,0 +1,7 @@
+package main
+
+import "fmt"
+
+func main() {
+	fmt.Println("Hello Sassan")
+}

+ 7 - 0
src/test2.go

@@ -0,0 +1,7 @@
+package main
+
+import "fmt"
+
+func main() {
+	fmt.Println("Hello from test2")
+}