<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Blog on Daeseong(Dennis) Dev Blog</title>
    <link>https://blog.nomaduub.com/tags/blog/</link>
    <description>Recent content in Blog on Daeseong(Dennis) Dev Blog</description>
    <generator>Hugo</generator>
    <language>en-us</language>
    <lastBuildDate>Sat, 25 Apr 2026 00:00:00 +0000</lastBuildDate>
    <atom:link href="https://blog.nomaduub.com/tags/blog/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Go 시작하기 - Getting started with Go</title>
      <link>https://blog.nomaduub.com/posts/20260425/</link>
      <pubDate>Sat, 25 Apr 2026 00:00:00 +0000</pubDate>
      <guid>https://blog.nomaduub.com/posts/20260425/</guid>
      <description>&lt;h4 id=&#34;1-프로젝트-초기화---project-initialization&#34;&gt;1. 프로젝트 초기화 - Project Initialization&lt;/h4&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;mkdir my-project
cd my-project
go mod init github.com/my-repo/my-project
&lt;/code&gt;&lt;/pre&gt;&lt;h4 id=&#34;2-프로젝트-구조---project-structure&#34;&gt;2. 프로젝트 구조 - Project Structure&lt;/h4&gt;
&lt;pre tabindex=&#34;0&#34;&gt;&lt;code&gt;my-project/
├── cmd
│   └── api/
│       └── main.go
│   └── xxx/
│       └── xxx.go
├── internal/
│   └── router/
│       └── router.go
│   └── config/
│       └── config.go
│   └── xxx/
│       └── xxx.go
├── go.mod
└── go.sum
&lt;/code&gt;&lt;/pre&gt;&lt;h4 id=&#34;3-gin-설치---install-gin&#34;&gt;3. Gin 설치 - Install Gin&lt;/h4&gt;
&lt;p&gt;Install the Gin package and clean up dependencies:&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
