mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-27 03:51:20 -05:00
13 lines
283 B
Go
13 lines
283 B
Go
// Copyright (c) 2019 YANDEX LLC.
|
|
|
|
package ycsdk
|
|
|
|
import "github.com/yandex-cloud/go-sdk/gen/functions"
|
|
|
|
const (
|
|
FunctionServiceID Endpoint = "serverless-functions"
|
|
)
|
|
|
|
func (sdk *SDK) Functions() *functions.Function {
|
|
return functions.NewFunction(sdk.getConn(FunctionServiceID))
|
|
}
|