cee34ec1c2
* initial completion of the sharing function * Adjusting multi-partition disk mounts * Add file sharing function * update usb auto mount shell * update samba config * add umount disk function * update change log * update usb auto mount \ * update usb auto mount * Update periodical.go
20 lines
557 B
Go
20 lines
557 B
Go
/*
|
|
* @Author: LinkLeong link@icewhale.org
|
|
* @Date: 2022-07-27 10:30:43
|
|
* @LastEditors: LinkLeong
|
|
* @LastEditTime: 2022-08-04 20:06:04
|
|
* @FilePath: /CasaOS/model/connections.go
|
|
* @Description:
|
|
* @Website: https://www.casaos.io
|
|
* Copyright (c) 2022 by icewhale, All Rights Reserved.
|
|
*/
|
|
package model
|
|
|
|
type Connections struct {
|
|
ID uint `json:"id"`
|
|
Username string `json:"username"`
|
|
Password string `json:"password,omitempty"`
|
|
Host string `json:"host"`
|
|
Port string `json:"port"`
|
|
MountPoint string `json:"mount_point"`
|
|
}
|