# autogo **Repository Path**: yumisanxiang/autogo ## Basic Information - **Project Name**: autogo - **Description**: 纯Golang写的自动鼠标键盘操作,使用w32库,目前只支持win - **Primary Language**: Go - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-06-28 - **Last Updated**: 2025-10-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: auto, 自动化 ## README # autogo #### 介绍 纯Golang写的自动鼠标键盘操作,使用w32库,目前只支持win #### 软件架构 纯Golang编写,使用github.com/gonutz/w32/v2库,暂时只支持win,实现了鼠标移动点击、键盘按键等功能 #### 安装教程 go get gitee.com/yumisanxiang/autogo #### 使用说明 ``` package main import ( "log" "time" "gitee.com/yumisanxiang/autogo" ) func main() { time.Sleep(1 * time.Second) log.Println("start") autogo.MouseClick() } ``` #### 参与贡献 1. Fork 本仓库 2. 新建 Feat_xxx 分支 3. 提交代码 4. 新建 Pull Request