Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions internal/base/base.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package base provides base support.
package base

import (
Expand Down
1 change: 1 addition & 0 deletions internal/browser/browser.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package browser support open a url in browser.
package browser

import (
Expand Down
1 change: 1 addition & 0 deletions internal/build/build.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package build implements the command build.
package build

import (
Expand Down
1 change: 1 addition & 0 deletions internal/clean/clean.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package clean implements the command clean.
package clean

import (
Expand Down
1 change: 1 addition & 0 deletions internal/client/client.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package client provides support for http request.
package client

import (
Expand Down
1 change: 1 addition & 0 deletions internal/description/description.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package description implements the command description.
package description

import (
Expand Down
1 change: 1 addition & 0 deletions internal/help/help.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package help implements the command help.
package help

import (
Expand Down
1 change: 1 addition & 0 deletions internal/helper/helper.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package helper implements the command helper.
package helper

import (
Expand Down
2 changes: 2 additions & 0 deletions internal/kit/doc.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
// Package kit contain the predefined type.
package kit
2 changes: 2 additions & 0 deletions internal/leetcode/doc.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
// Package leetcode implements access to leetcode.com.
package leetcode
1 change: 1 addition & 0 deletions internal/open/open.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package open implements the command open.
package open

import (
Expand Down
1 change: 1 addition & 0 deletions internal/page/page.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package page implements the command page.
package page

import (
Expand Down
1 change: 1 addition & 0 deletions internal/post/post.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package post implements the command post.
package post

import (
Expand Down
1 change: 1 addition & 0 deletions internal/question/question.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package question implements the command question.
package question

import (
Expand Down
1 change: 1 addition & 0 deletions internal/readme/readme.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package readme implements the command readme.
package readme

import (
Expand Down
1 change: 1 addition & 0 deletions internal/tag/tag.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package tag implements the command tag.
package tag

import (
Expand Down
1 change: 1 addition & 0 deletions internal/test/test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package test implements the command test.
package test

import (
Expand Down
1 change: 1 addition & 0 deletions internal/update/update.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package update implements the command update.
package update

import (
Expand Down
1 change: 1 addition & 0 deletions internal/version/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package version implements the command version.
package version

import (
Expand Down
1 change: 1 addition & 0 deletions main.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// leetcode is a tool for managing leetcode source code.
package main

import (
Expand Down