Initial commit

This commit is contained in:
2020-10-08 12:03:53 +02:00
commit 41c14ff6bb
7 changed files with 101 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
go_build_trikotwaschliste

8
.idea/modules.xml generated Normal file
View File

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

9
.idea/trikotwaschliste.iml generated Normal file
View File

@@ -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
.idea/vcs.xml generated Normal file
View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

65
.idea/workspace.xml generated Normal file
View File

@@ -0,0 +1,65 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ChangeListManager">
<list default="true" id="52fd0845-10c0-4055-866d-7eb68e0b1470" name="Default Changelist" comment="" />
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
<option name="LAST_RESOLUTION" value="IGNORE" />
</component>
<component name="GOROOT" path="/usr/lib/go" />
<component name="Git.Settings">
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
</component>
<component name="GoLibraries">
<option name="indexEntireGoPath" value="false" />
</component>
<component name="ProjectId" id="1iagY9CQioLSQCY9mfpHeRUXfdI" />
<component name="ProjectViewState">
<option name="hideEmptyMiddlePackages" value="true" />
<option name="showLibraryContents" value="true" />
</component>
<component name="PropertiesComponent">
<property name="RunOnceActivity.OpenProjectViewOnStart" value="true" />
<property name="WebServerToolWindowFactoryState" value="false" />
<property name="go.import.settings.migrated" value="true" />
<property name="go.sdk.automatically.set" value="true" />
<property name="go.tried.to.enable.integration.vgo.integrator" value="true" />
<property name="last_opened_file_path" value="$PROJECT_DIR$" />
<property name="nodejs_interpreter_path.stuck_in_default_project" value="undefined stuck path" />
<property name="nodejs_npm_path_reset_for_default_project" value="true" />
</component>
<component name="RunManager">
<configuration name="go build trikotwaschliste" type="GoApplicationRunConfiguration" factoryName="Go Application" nameIsGenerated="true">
<module name="trikotwaschliste" />
<working_directory value="$PROJECT_DIR$" />
<go_parameters value="-i" />
<kind value="DIRECTORY" />
<filePath value="$PROJECT_DIR$" />
<directory value="$PROJECT_DIR$" />
<output_directory value="$PROJECT_DIR$" />
<method v="2" />
</configuration>
</component>
<component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
<component name="TypeScriptGeneratedFilesManager">
<option name="version" value="3" />
</component>
<component name="VgoProject">
<integration-enabled>true</integration-enabled>
</component>
<component name="WindowStateProjectService">
<state x="761" y="416" key="#Go_Modules" timestamp="1602151303038">
<screen x="0" y="0" width="1920" height="1080" />
</state>
<state x="761" y="416" key="#Go_Modules/0.0.1920.1080@0.0.1920.1080" timestamp="1602151303038" />
<state x="425" y="237" width="1071" height="680" key="#com.intellij.execution.impl.EditConfigurationsDialog" timestamp="1602151358617">
<screen x="0" y="0" width="1920" height="1080" />
</state>
<state x="425" y="237" width="1071" height="680" key="#com.intellij.execution.impl.EditConfigurationsDialog/0.0.1920.1080@0.0.1920.1080" timestamp="1602151358617" />
<state x="746" y="367" key="FileChooserDialogImpl" timestamp="1602151353186">
<screen x="0" y="0" width="1920" height="1080" />
</state>
<state x="746" y="367" key="FileChooserDialogImpl/0.0.1920.1080@0.0.1920.1080" timestamp="1602151353186" />
</component>
</project>

3
go.mod Normal file
View File

@@ -0,0 +1,3 @@
module trikotwaschliste
go 1.15

9
main.go Normal file
View File

@@ -0,0 +1,9 @@
package main
import (
"fmt"
)
func main() {
fmt.Println("Hallo")
}